28 lines
908 B
Nix
28 lines
908 B
Nix
{ mkDerivation, ansi-terminal, base, bytestring, Cabal, containers
|
|
, deepseq, Diff, directory, filepath, ShellCheck, stdenv, tasty
|
|
, tasty-golden, transformers, fetchFromGitHub
|
|
}:
|
|
mkDerivation {
|
|
pname = "haskell-ci";
|
|
version = "0";
|
|
src = fetchFromGitHub {
|
|
owner = "haskell-CI";
|
|
repo = "haskell-ci";
|
|
rev = "848c2fe5c7d0d95b20312e86b360d5db8c95db75";
|
|
sha256 = "1n4y6j564sxxry19xs4x0ds7fg8h1q0svw9q45477czx82qzavym";
|
|
};
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
libraryHaskellDepends = [
|
|
base Cabal containers deepseq directory filepath ShellCheck
|
|
transformers
|
|
];
|
|
executableHaskellDepends = [ base ];
|
|
testHaskellDepends = [
|
|
ansi-terminal base bytestring Diff directory filepath tasty
|
|
tasty-golden transformers
|
|
];
|
|
homepage = "https://github.com/haskell-CI/haskell-ci";
|
|
description = "Script generator for Travis-CI";
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|