-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
On cabal-install-2.4, using cabal-version 2.2 means that a lot of extra-source-files don't get detected.
- Loading branch information
Showing
4 changed files
with
32 additions
and
16 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ mkDerivation, base, bytestring, Cabal, containers, contravariant | ||
, dhall, Diff, directory, filepath, hashable, microlens | ||
, optparse-applicative, prettyprinter, stdenv, tasty, tasty-golden | ||
, tasty-hunit, text, transformers, vector | ||
}: | ||
mkDerivation { | ||
pname = "dhall-to-cabal"; | ||
version = "1.3.1.0"; | ||
src = ./.; | ||
isLibrary = true; | ||
isExecutable = true; | ||
libraryHaskellDepends = [ | ||
base bytestring Cabal containers contravariant dhall hashable text | ||
transformers vector | ||
]; | ||
executableHaskellDepends = [ | ||
base bytestring Cabal dhall directory filepath microlens | ||
optparse-applicative prettyprinter text transformers | ||
]; | ||
testHaskellDepends = [ | ||
base bytestring Cabal dhall Diff filepath microlens prettyprinter | ||
tasty tasty-golden tasty-hunit text | ||
]; | ||
homepage = "https://github.com/ocharles/dhall-to-cabal"; | ||
description = "Compile Dhall expressions to Cabal files"; | ||
license = stdenv.lib.licenses.mit; | ||
} |
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