diff options
author | lassulus <lass@lassul.us> | 2017-05-02 22:19:01 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-05-02 22:19:01 +0200 |
commit | 80af533ffc371ab400e221d17b95cb87c2839984 (patch) | |
tree | 855d5c024c8f6042755ba07ddf9f5d94f2dede0e /krebs/5pkgs/haskell-overrides/kirk.nix | |
parent | e050a2b19d2730a050d8ac6dbf64588689cf7a7c (diff) | |
parent | 9457f3fe8e9a35ee19b5a60e3aef3cc1c51dd344 (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/haskell-overrides/kirk.nix')
-rw-r--r-- | krebs/5pkgs/haskell-overrides/kirk.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/krebs/5pkgs/haskell-overrides/kirk.nix b/krebs/5pkgs/haskell-overrides/kirk.nix new file mode 100644 index 000000000..2cd6bb134 --- /dev/null +++ b/krebs/5pkgs/haskell-overrides/kirk.nix @@ -0,0 +1,18 @@ +{ mkDerivation, async, base, bytestring, fetchgit, network +, optparse-applicative, stdenv, text +}: +mkDerivation { + pname = "kirk"; + version = "1.0.0"; + src = fetchgit { + url = "http://cgit.krebsco.de/kirk"; + sha256 = "0w4drg2lyyw45abfn3g55zd6m7pl7yqxql5rpyy6qqdbvnyak94w"; + rev = "c78f3c62c0ba76465e39d1570073f867aa2d4240"; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + async base bytestring network optparse-applicative text + ]; + license = stdenv.lib.licenses.mit; +} |