reaktor2: 0.0.0 -> 0.1.0

This commit is contained in:
tv 2019-01-23 00:04:51 +01:00
parent ef6d1453c3
commit 659eb2e6c5

View File

@ -1,23 +1,25 @@
{ mkDerivation, aeson, attoparsec, base, blessings, bytestring { mkDerivation, aeson, attoparsec, base, blessings, bytestring
, containers, fetchgit, filepath, network, network-simple , containers, data-default, fetchgit, filepath, lens, lens-aeson
, network-simple-tls, pcre-heavy, pcre-light, process, random , network, network-simple, network-simple-tls, pcre-heavy
, stdenv, text, time, transformers, unix, unordered-containers , pcre-light, process, random, stdenv, text, time, transformers
, unagi-chan, unix, unordered-containers
}: }:
mkDerivation { mkDerivation {
pname = "reaktor2"; pname = "reaktor2";
version = "0.0.0"; version = "0.1.0";
src = fetchgit { src = fetchgit {
url = "https://cgit.krebsco.de/reaktor2"; url = "https://cgit.krebsco.de/reaktor2";
sha256 = "1q2rb78mzpyd8wxfmlbfdz7zq5smsrrvb4n874ap1p8f2bmmp0am"; sha256 = "0g5b40y2gbknghzw12jar1im87k0g4hjg259wf1gp5v55dh3xwk6";
rev = "ce276eee82ec0b8c4106beb4c51d6f9eb77335c4"; rev = "d40815fd56bf1895af89b72b1171675a2e0ae5f7";
fetchSubmodules = true; fetchSubmodules = true;
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ executableHaskellDepends = [
aeson attoparsec base blessings bytestring containers filepath aeson attoparsec base blessings bytestring containers data-default
network network-simple network-simple-tls pcre-heavy pcre-light filepath lens lens-aeson network network-simple network-simple-tls
process random text time transformers unix unordered-containers pcre-heavy pcre-light process random text time transformers
unagi-chan unix unordered-containers
]; ];
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
} }