summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/default.nix b/default.nix
new file mode 100644
index 0000000..5582923
--- /dev/null
+++ b/default.nix
@@ -0,0 +1,15 @@
+{
+ pkgs ?
+ import (builtins.fetchTarball {
+ url = "https://github.com/nixos/nixpkgs/archive/356c6dcdf37cfb4162f534e5dcabadddbfbd6bfa.tar.gz";
+ sha256 = "sha256-JCkJfcZL1qs24L+Fv6OyFW4wTE6+NCg9I8nDf6npP+A=";
+ }) {},
+}: let
+ inherit (pkgs.haskell.lib) dontCheck markUnbroken;
+ hp = pkgs.haskell.packages.ghc928.override {
+ overrides = self: super: rec {
+ cuckoo = markUnbroken (dontCheck super.cuckoo);
+ };
+ };
+in
+ hp.callCabal2nix "dedumi" ./. {}