Skip to content

Commit

Permalink
override dual-tree
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-martin committed Oct 28, 2020
1 parent a76b156 commit aa6ed7b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions nix/haskell/overrides.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ self: super: {

aeson-optics = self.callPackage (import ./overrides/aeson-optics.nix) {};
dsv = self.callPackage (import ./overrides/dsv.nix) {};
dual-tree = self.callPackage (import ./overrides/dual-tree.nix) {};
grab = self.callPackage (import ./overrides/grab.nix) {};
grab-form = self.callPackage (import ./overrides/grab-form.nix) {};
hs-nix-modules = self.callPackage (import ./overrides/hs-nix-modules.nix) {};
Expand Down
21 changes: 21 additions & 0 deletions nix/haskell/overrides/dual-tree.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ mkDerivation, base, fetchgit, monoid-extras, newtype-generics
, QuickCheck, semigroups, stdenv, testing-feat
}:
mkDerivation {
pname = "dual-tree";
version = "0.2.2.1";
src = fetchgit {
url = "https://github.com/chris-martin/dual-tree.git";
sha256 = "1xlxr248sjvh6yv2nswivdg4qsm5530i8dp0h2pzqpxns04inqg9";
rev = "f8bfbe9226f277004ac8a3af781175ad8207684f";
fetchSubmodules = true;
};
libraryHaskellDepends = [
base monoid-extras newtype-generics semigroups
];
testHaskellDepends = [
base monoid-extras QuickCheck semigroups testing-feat
];
description = "Rose trees with cached and accumulating monoidal annotations";
license = stdenv.lib.licenses.bsd3;
}

0 comments on commit aa6ed7b

Please sign in to comment.