Merge branch 'master' of ni:stockholm

This commit is contained in:
lassulus 2017-05-23 22:10:29 +02:00
commit 32f053aaed

View File

@ -3,16 +3,19 @@
}: }:
mkDerivation { mkDerivation {
pname = "kirk"; pname = "kirk";
version = "1.0.0"; version = "1.0.1";
src = fetchgit { src = fetchgit {
url = "http://cgit.krebsco.de/kirk"; url = "http://cgit.krebsco.de/kirk";
sha256 = "0w4drg2lyyw45abfn3g55zd6m7pl7yqxql5rpyy6qqdbvnyak94w"; sha256 = "1acsmmc485c54axpy9bd0320j18hs261vl1vdxns4n04sxzqd7k0";
rev = "c78f3c62c0ba76465e39d1570073f867aa2d4240"; rev = "cdf3cb373af8f9b03a9487a63eb32e0226913589";
}; };
isLibrary = false; isLibrary = true;
isExecutable = true; isExecutable = true;
libraryHaskellDepends = [
base bytestring network optparse-applicative text
];
executableHaskellDepends = [ executableHaskellDepends = [
async base bytestring network optparse-applicative text async base network optparse-applicative text
]; ];
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
} }