diff options
author | lassulus <lassulus@lassul.us> | 2021-10-23 12:10:26 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2021-10-23 12:10:26 +0200 |
commit | f6ef5250491d8eb9a67389a527cc829efbb46f22 (patch) | |
tree | 4c138cfd71676c3ec17b418b6b3287d58d105689 /krebs/5pkgs/haskell/kirk.nix | |
parent | 1ea95b68f4cfeb85f4539a87797b120fca19e9d4 (diff) | |
parent | 1630aafe6d64f56df49c0259962d78b5913e96af (diff) |
Merge remote-tracking branch 'ni/master'
Diffstat (limited to 'krebs/5pkgs/haskell/kirk.nix')
-rw-r--r-- | krebs/5pkgs/haskell/kirk.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/krebs/5pkgs/haskell/kirk.nix b/krebs/5pkgs/haskell/kirk.nix index 073e5d505..d6fdec4c9 100644 --- a/krebs/5pkgs/haskell/kirk.nix +++ b/krebs/5pkgs/haskell/kirk.nix @@ -1,5 +1,5 @@ -{ mkDerivation, async, base, bytestring, fetchgit, network -, optparse-applicative, stdenv, text +{ mkDerivation, async, base, bytestring, fetchgit, lib, network +, optparse-applicative, text }: mkDerivation { pname = "kirk"; @@ -8,6 +8,7 @@ mkDerivation { url = "http://cgit.krebsco.de/kirk"; sha256 = "1acsmmc485c54axpy9bd0320j18hs261vl1vdxns4n04sxzqd7k0"; rev = "cdf3cb373af8f9b03a9487a63eb32e0226913589"; + fetchSubmodules = true; }; isLibrary = true; isExecutable = true; @@ -17,5 +18,5 @@ mkDerivation { executableHaskellDepends = [ async base network optparse-applicative text ]; - license = stdenv.lib.licenses.mit; + license = lib.licenses.mit; } |