mirror of
https://github.com/scarf-sh/tie.git
synced 2024-11-23 02:56:59 +03:00
29 lines
991 B
Nix
29 lines
991 B
Nix
{ mkDerivation, aeson, base, bytestring, containers, directory
|
|
, filepath, hspec, insert-ordered-containers, lens, lib, mtl
|
|
, openapi3, optparse-applicative, prettyprinter, relude, tasty
|
|
, tasty-discover, tasty-golden, tasty-hspec, tasty-hunit, text
|
|
, unordered-containers, yaml
|
|
}:
|
|
mkDerivation {
|
|
pname = "tie";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
enableSeparateDataOutput = true;
|
|
libraryHaskellDepends = [
|
|
aeson base bytestring containers directory filepath
|
|
insert-ordered-containers lens mtl openapi3 prettyprinter relude
|
|
text unordered-containers yaml
|
|
];
|
|
executableHaskellDepends = [ base optparse-applicative relude ];
|
|
testHaskellDepends = [
|
|
aeson base bytestring containers filepath hspec
|
|
insert-ordered-containers openapi3 prettyprinter relude tasty
|
|
tasty-golden tasty-hspec tasty-hunit text yaml
|
|
];
|
|
testToolDepends = [ tasty-discover ];
|
|
license = "unknown";
|
|
hydraPlatforms = lib.platforms.none;
|
|
}
|