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

29 lines
1.1 KiB
Nix
Raw Normal View History

2019-01-26 19:41:45 +00:00
{ mkDerivation, aeson, async, attoparsec, base, blessings
2022-07-26 18:46:01 +00:00
, bytestring, containers, data-default, filepath, hashable, lens
, lens-aeson, lib, network, network-simple, network-simple-tls
, network-uri, pcre-light, process, random, servant-server
, string-conversions, stringsearch, text, time, transformers
, unagi-chan, unix, unordered-containers, vector, wai, warp
, fetchgit
2019-01-21 11:09:29 +00:00
}:
2022-07-26 18:46:01 +00:00
mkDerivation {
2019-01-21 11:09:29 +00:00
pname = "reaktor2";
2022-07-26 18:46:01 +00:00
version = "0.4.2";
2019-01-21 11:09:29 +00:00
src = fetchgit {
2022-07-26 18:46:01 +00:00
url = "https://cgit.krebsco.de/reaktor2";
hash = "sha256-JPQyy0hDSH5JqQGjwoO5BNsD4qk+GKP1VH+j4/2cqes";
rev = "53a11f421fb18e8687fa06e5511cea8bd9defc36";
2019-01-21 11:09:29 +00:00
fetchSubmodules = true;
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
2019-01-26 19:41:45 +00:00
aeson async attoparsec base blessings bytestring containers
2019-01-27 02:29:00 +00:00
data-default filepath hashable lens lens-aeson network
2020-04-17 21:14:19 +00:00
network-simple network-simple-tls network-uri pcre-light process
random servant-server string-conversions stringsearch text time
2020-04-17 17:22:14 +00:00
transformers unagi-chan unix unordered-containers vector wai warp
2019-01-21 11:09:29 +00:00
];
2021-10-19 20:51:26 +00:00
license = lib.licenses.mit;
2019-01-21 11:09:29 +00:00
}