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

28 lines
1 KiB
Nix
Raw Normal View History

2019-01-26 20:41:45 +01:00
{ mkDerivation, aeson, async, attoparsec, base, blessings
2019-01-27 03:29:00 +01:00
, bytestring, containers, data-default, fetchgit, filepath
, hashable, lens, lens-aeson, network, network-simple
, network-simple-tls, pcre-light, process, random, stdenv
, string-conversions, stringsearch, text, time, transformers
, unagi-chan, unix, unordered-containers, vector
2019-01-21 12:09:29 +01:00
}:
mkDerivation {
pname = "reaktor2";
2019-01-29 20:51:11 +01:00
version = "0.2.2";
2019-01-21 12:09:29 +01:00
src = fetchgit {
url = "https://cgit.krebsco.de/reaktor2";
2019-01-29 20:51:11 +01:00
sha256 = "1kyr5i5zdzvc7fcyac1i1yvi88kcxafrgp8p79c1b9l4g9sjnv78";
rev = "9f4e2644188f985d7cd806c13e2c0dee1688b9f0";
2019-01-21 12:09:29 +01:00
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2019-01-26 20:41:45 +01:00
aeson async attoparsec base blessings bytestring containers
2019-01-27 03:29:00 +01:00
data-default filepath hashable lens lens-aeson network
network-simple network-simple-tls pcre-light process random
string-conversions stringsearch text time transformers unagi-chan
unix unordered-containers vector
2019-01-21 12:09:29 +01:00
];
license = stdenv.lib.licenses.mit;
}