blob: 9d18f92fcdd79833a8ed906728adb16b14e2189a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ mkDerivation, base, fetchgit, lib }:
mkDerivation {
pname = "seq2";
version = "1.0.0";
src = fetchgit {
url = "https://cgit.krebsco.de/seq2";
sha256 = "03b90b68xpk00v13cc45aw148z1spph8vyqga8vmif9iv5g0lfjn";
rev = "6aeb56c36a9a47c9216c8f9252ca26d091506c73";
fetchSubmodules = true;
};
libraryHaskellDepends = [ base ];
homepage = "https://cgit.krebsco.de/seq2";
license = lib.licenses.mit;
}
|