mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 23:54:01 +00:00
29 lines
908 B
Nix
29 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 = "b65ea5b35c59d1e7d0f89ff4e21840dc0e2ec3a0";
|
|
sha256 = "0qgsll772x24nnkarj30mplmvvwzz5vn5aadn5xzkcn77g5jiqmg";
|
|
};
|
|
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;
|
|
}
|