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

26 lines
981 B
Nix
Raw Normal View History

2019-01-21 12:09:29 +01:00
{ mkDerivation, aeson, attoparsec, base, blessings, bytestring
2019-01-23 00:04:51 +01:00
, containers, data-default, fetchgit, filepath, lens, lens-aeson
, network, network-simple, network-simple-tls, pcre-heavy
2019-01-23 13:50:09 +01:00
, pcre-light, process, random, stdenv, stringsearch, text, time
, transformers, unagi-chan, unix, unordered-containers, vector
2019-01-21 12:09:29 +01:00
}:
mkDerivation {
pname = "reaktor2";
2019-01-24 21:16:44 +01:00
version = "0.1.3";
2019-01-21 12:09:29 +01:00
src = fetchgit {
url = "https://cgit.krebsco.de/reaktor2";
2019-01-24 21:16:44 +01:00
sha256 = "15qhycfja7psnd7v5hn4qb5wrs6bjx4qhny49nkhb7agj4vzwnwi";
rev = "6c629a0cc422872abdfc40f9621ac0c4f6a420a8";
2019-01-21 12:09:29 +01:00
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2019-01-23 00:04:51 +01:00
aeson attoparsec base blessings bytestring containers data-default
filepath lens lens-aeson network network-simple network-simple-tls
2019-01-23 13:50:09 +01:00
pcre-heavy pcre-light process random stringsearch text time
transformers unagi-chan unix unordered-containers vector
2019-01-21 12:09:29 +01:00
];
license = stdenv.lib.licenses.mit;
}