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

tree-diff: init at 0.2.2

parent 1b36f17d
No related merge requests found
...@@ -572,6 +572,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -572,6 +572,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "e212239b685e1ecf7ee95dd1e944cc563351907f") (Some "e212239b685e1ecf7ee95dd1e944cc563351907f")
(None Text) (None Text)
, callHackage "tls" "1.6.0" , callHackage "tls" "1.6.0"
, callHackage "tree-diff" "0.2.2"
, callHackage "trifecta" "2.1.2" , callHackage "trifecta" "2.1.2"
, callHackage "typed-process" "0.2.10.1" , callHackage "typed-process" "0.2.10.1"
, callHackage "type-errors-pretty" "0.0.1.2" , callHackage "type-errors-pretty" "0.0.1.2"
......
...@@ -767,6 +767,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -767,6 +767,8 @@ final: prev: with pkgs.haskell.lib; {
tls = prev.callPackage (./pkgs/tls.nix) { }; tls = prev.callPackage (./pkgs/tls.nix) { };
tree-diff = prev.callPackage (./pkgs/tree-diff.nix) { };
trifecta = prev.callPackage (./pkgs/trifecta.nix) { }; trifecta = prev.callPackage (./pkgs/trifecta.nix) { };
type-equality = prev.callPackage (./pkgs/type-equality.nix) { }; type-equality = prev.callPackage (./pkgs/type-equality.nix) { };
......
{ mkDerivation
, aeson
, ansi-terminal
, ansi-wl-pprint
, base
, base-compat
, bytestring
, bytestring-builder
, containers
, criterion
, deepseq
, Diff
, hashable
, lib
, parsec
, parsers
, pretty
, primitive
, QuickCheck
, scientific
, semialign
, strict
, tagged
, tasty
, tasty-golden
, tasty-quickcheck
, text
, these
, time
, trifecta
, unordered-containers
, uuid-types
, vector
}:
mkDerivation {
pname = "tree-diff";
version = "0.2.2";
sha256 = "008390239dd942095b487b4a59e54faf18d51db5a4462177f301b763c0d5743c";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
ansi-terminal
ansi-wl-pprint
base
base-compat
bytestring
bytestring-builder
containers
deepseq
hashable
parsec
parsers
pretty
primitive
QuickCheck
scientific
semialign
strict
tagged
text
these
time
unordered-containers
uuid-types
vector
];
testHaskellDepends = [
ansi-terminal
ansi-wl-pprint
base
base-compat
parsec
primitive
QuickCheck
tagged
tasty
tasty-golden
tasty-quickcheck
trifecta
];
benchmarkHaskellDepends = [ base criterion deepseq Diff ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/phadej/tree-diff";
description = "Diffing of (expression) trees";
license = lib.licenses.gpl2Plus;
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