-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved migrate binary to ihp-migrate package
- Loading branch information
1 parent
1d6c7e7
commit de021bb
Showing
5 changed files
with
64 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ mkDerivation, ihp, lib, with-utf8_1_1_0_0 }: | ||
mkDerivation { | ||
pname = "ihp-migrate"; | ||
version = "1.3.0"; | ||
src = ./../../ihp-migrate; | ||
isLibrary = false; | ||
isExecutable = true; | ||
executableHaskellDepends = [ ihp with-utf8_1_1_0_0 ]; | ||
description = "Provides the IHP migrate binary"; | ||
license = lib.licenses.mit; | ||
mainProgram = "migrate"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
cabal-version: 2.2 | ||
name: ihp-migrate | ||
version: 1.3.0 | ||
synopsis: Provides the IHP migrate binary | ||
description: Postgres DB migrations | ||
license: MIT | ||
author: digitally induced GmbH | ||
maintainer: [email protected] | ||
bug-reports: https://github.com/digitallyinduced/ihp/issues | ||
category: Database | ||
build-type: Simple | ||
|
||
executable migrate | ||
default-extensions: | ||
OverloadedStrings | ||
, NoImplicitPrelude | ||
, ImplicitParams | ||
, Rank2Types | ||
, NamedFieldPuns | ||
, TypeSynonymInstances | ||
, FlexibleInstances | ||
, DisambiguateRecordFields | ||
, DuplicateRecordFields | ||
, OverloadedLabels | ||
, FlexibleContexts | ||
, DataKinds | ||
, QuasiQuotes | ||
, TypeFamilies | ||
, PackageImports | ||
, ScopedTypeVariables | ||
, RecordWildCards | ||
, TypeApplications | ||
, DataKinds | ||
, InstanceSigs | ||
, DeriveGeneric | ||
, MultiParamTypeClasses | ||
, TypeOperators | ||
, DeriveDataTypeable | ||
, DefaultSignatures | ||
, BangPatterns | ||
, FunctionalDependencies | ||
, PartialTypeSignatures | ||
, BlockArguments | ||
, LambdaCase | ||
, StandaloneDeriving | ||
, TemplateHaskell | ||
, OverloadedRecordDot | ||
build-depends: ihp, with-utf8 | ||
hs-source-dirs: . | ||
main-is: Migrate.hs |