Skip to content

stack-to-nix: Allow custom output filenames #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 13 additions & 7 deletions nix-tools.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ library
, Cabal2Nix.Util
, Cabal2Nix.Plan
, Distribution.Nixpkgs.Fetch
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, hnix >= 0.5.0
, aeson
, unordered-containers
Expand All @@ -40,7 +40,7 @@ library
executable cabal-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, transformers
, bytestring
, hpack
Expand All @@ -56,7 +56,7 @@ executable cabal-to-nix
executable hashes-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, hnix >= 0.5.0
, nix-tools
, data-fix
Expand All @@ -72,7 +72,7 @@ executable hashes-to-nix
executable plan-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, nix-tools
, hnix >= 0.5.0
, text
Expand All @@ -87,7 +87,7 @@ executable plan-to-nix
executable hackage-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, nix-tools
, hackage-db
, hnix
Expand All @@ -106,7 +106,7 @@ executable hackage-to-nix
executable lts-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
build-depends: base >=4.11 && <4.13
, nix-tools
, hnix >= 0.5.0
, yaml
Expand All @@ -124,7 +124,13 @@ executable lts-to-nix
executable stack-to-nix
ghc-options: -Wall
main-is: Main.hs
build-depends: base >=4.11 && <4.12
other-modules: Stack2nix
, Stack2nix.Cache
, Stack2nix.CLI
, Stack2nix.External.Resolve
, Stack2nix.Project
, Stack2nix.Stack
build-depends: base >=4.11 && <4.13
, nix-tools
, transformers
, hnix >= 0.5.0
Expand Down
Loading