stockholm/krebs/5pkgs/haskell/kirk.nix

22 lines
595 B
Nix
Raw Normal View History

2017-05-02 20:07:50 +00:00
{ mkDerivation, async, base, bytestring, fetchgit, network
, optparse-applicative, stdenv, text
}:
mkDerivation {
2017-05-02 20:14:17 +00:00
pname = "kirk";
2017-05-23 19:22:25 +00:00
version = "1.0.1";
2017-05-02 20:07:50 +00:00
src = fetchgit {
2017-05-02 20:14:17 +00:00
url = "http://cgit.krebsco.de/kirk";
2017-05-23 19:22:25 +00:00
sha256 = "1acsmmc485c54axpy9bd0320j18hs261vl1vdxns4n04sxzqd7k0";
rev = "cdf3cb373af8f9b03a9487a63eb32e0226913589";
2017-05-02 20:07:50 +00:00
};
2017-05-23 19:22:25 +00:00
isLibrary = true;
2017-05-02 20:07:50 +00:00
isExecutable = true;
2017-05-23 19:22:25 +00:00
libraryHaskellDepends = [
base bytestring network optparse-applicative text
];
2017-05-02 20:07:50 +00:00
executableHaskellDepends = [
2017-05-23 19:22:25 +00:00
async base network optparse-applicative text
2017-05-02 20:07:50 +00:00
];
license = stdenv.lib.licenses.mit;
}