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
2019-01-27 02:29:00 +00:00
, bytestring, containers, data-default, fetchgit, filepath
, hashable, lens, lens-aeson, network, network-simple
2020-04-17 21:14:19 +00:00
, network-simple-tls, network-uri, pcre-light, process, random
2021-10-19 20:51:26 +00:00
, servant-server, lib, string-conversions, stringsearch, text
2020-04-17 21:14:19 +00:00
, time, transformers, unagi-chan, unix, unordered-containers
, vector, wai, warp
2019-01-21 11:09:29 +00:00
}:
2020-11-03 17:57:46 +00:00
mkDerivation rec {
2019-01-21 11:09:29 +00:00
pname = "reaktor2";
2022-06-01 09:20:30 +00:00
version = "0.4.0a";
2019-01-21 11:09:29 +00:00
src = fetchgit {
2022-06-01 09:20:30 +00:00
url = "https://cgit.lassul.us/reaktor2";
sha256 = "sha256-x1i2TWcycYVFij6832xaBiQa1RQ1VmSfu5Qt1QrUtds=";
rev = "6d3eb6de5e770ee26874bb7449934f0c55bd1efa";
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
}