mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 00:33:10 +00:00
30 lines
909 B
Nix
30 lines
909 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 = "f67bc41621d40d6559684be5406d65409df4c480";
|
|
sha256 = "1r79dbgjq97h30xa3xhf75l0bivag8an9ag00mgzgpglvgc96czm";
|
|
};
|
|
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;
|
|
}
|