Skip to content
Snippets Groups Projects
Commit bb32f6cb authored by Daniel Firth's avatar Daniel Firth
Browse files

Diff: init at 0.4.1

parent 2d6c6107
Branches
Tags
No related merge requests found
...@@ -65,6 +65,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -65,6 +65,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(None Text) (None Text)
(Some "Cabal-tree-diff") (Some "Cabal-tree-diff")
, callHackage "ChasingBottoms" "1.3.1.12" , callHackage "ChasingBottoms" "1.3.1.12"
, callHackage "Diff" "0.4.1"
, callHackage "HTTP" "4000.4.1" , callHackage "HTTP" "4000.4.1"
, callHackage "HUnit" "1.6.2.0" , callHackage "HUnit" "1.6.2.0"
, callHackage "JuicyPixels" "3.3.8" , callHackage "JuicyPixels" "3.3.8"
......
...@@ -13,6 +13,8 @@ self: with pkgs.haskell.lib; { ...@@ -13,6 +13,8 @@ self: with pkgs.haskell.lib; {
ChasingBottoms = self.callPackage (./pkgs/ChasingBottoms.nix) { }; ChasingBottoms = self.callPackage (./pkgs/ChasingBottoms.nix) { };
Diff = self.callPackage (./pkgs/Diff.nix) { };
HTTP = self.callPackage (./pkgs/HTTP.nix) { }; HTTP = self.callPackage (./pkgs/HTTP.nix) { };
HUnit = self.callPackage (./pkgs/HUnit.nix) { }; HUnit = self.callPackage (./pkgs/HUnit.nix) { };
......
{ mkDerivation
, array
, base
, directory
, lib
, pretty
, process
, QuickCheck
, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "Diff";
version = "0.4.1";
sha256 = "fd5e4aaac7219bcbb14834fb8580ebe0aae905958d0ad74f5338ea290b372670";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ array base pretty ];
testHaskellDepends = [
array
base
directory
pretty
process
QuickCheck
test-framework
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "O(ND) diff algorithm in haskell";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment