diff options
author | tv <tv@krebsco.de> | 2015-07-27 02:02:34 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-07-27 02:02:34 +0200 |
commit | 869eeb1dc1d3bfeddf67f882e0853b15e63dceb3 (patch) | |
tree | fa6bf616e54422468ef7f58c290a710b0710b9b9 /tv/pkgs/lentil/default.nix | |
parent | b9df7908fc96c6e809c3f22bfca50d8703ce12a1 (diff) |
* tv -> tv *
Diffstat (limited to 'tv/pkgs/lentil/default.nix')
-rw-r--r-- | tv/pkgs/lentil/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tv/pkgs/lentil/default.nix b/tv/pkgs/lentil/default.nix new file mode 100644 index 0000000..1385cbd --- /dev/null +++ b/tv/pkgs/lentil/default.nix @@ -0,0 +1,17 @@ +{ pkgs, ... }: + +(pkgs.haskellngPackages.override { + overrides = self: super: { + lentil = super.lentil.override { + mkDerivation = (attrs: self.mkDerivation (attrs // { + version = "0.1.2.7"; + sha256 = "1g3if2y41li6wyg7ffvpybqvbywiq8bf5b5fb6pz499hinzahb9d"; + patches = [ + ./1.patch + ./syntaxes.patch + ]; + doCheck = false; + })); + }; + }; +}).lentil |