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

genvalidity-dirforest: init at 69e8ae036b047fae105c1fe990e175a7572a3eba

parent a0e5a178
Branches
Tags
No related merge requests found
......@@ -183,6 +183,11 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "genvalidity-case-insensitive" "0.0.0.1"
, callHackage "genvalidity-containers" "1.0.0.1"
, callHackage "genvalidity-criterion" "1.1.0.0"
, callCabal2nix
"genvalidity-dirforest"
"https://github.com/NorfairKing/dirforest"
(Some "69e8ae036b047fae105c1fe990e175a7572a3eba")
(Some "genvalidity-dirforest")
, callHackage "genvalidity-hspec" "1.0.0.2"
, callHackage "genvalidity-path" "1.0.0.1"
, callHackage "genvalidity-persistent" "1.0.0.1"
......
......@@ -177,6 +177,8 @@ final: prev: with pkgs.haskell.lib; {
genvalidity-criterion = prev.callPackage (./pkgs/genvalidity-criterion.nix) { };
genvalidity-dirforest = prev.callPackage (./pkgs/genvalidity-dirforest.nix) { };
genvalidity-hspec = prev.callPackage (./pkgs/genvalidity-hspec.nix) { };
genvalidity-path = prev.callPackage (./pkgs/genvalidity-path.nix) { };
......
{ mkDerivation, base, bytestring, containers, criterion, dirforest
, fetchgit, filepath, genvalidity, genvalidity-bytestring
, genvalidity-containers, genvalidity-criterion, genvalidity-hspec
, genvalidity-hspec-aeson, genvalidity-path, genvalidity-text
, hspec, lib, path, path-io, pretty-show, QuickCheck
}:
mkDerivation {
pname = "genvalidity-dirforest";
version = "0.1.0.0";
src = fetchgit {
url = "https://github.com/NorfairKing/dirforest";
sha256 = "0d5gf7y46nrrrysmpmhfq7iij9xcpbiqp4bnzz09730zqfs40rm4";
rev = "69e8ae036b047fae105c1fe990e175a7572a3eba";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/genvalidity-dirforest/; echo source root reset to $sourceRoot";
libraryHaskellDepends = [
base containers dirforest filepath genvalidity
genvalidity-containers genvalidity-path path QuickCheck
];
testHaskellDepends = [
base bytestring containers dirforest filepath
genvalidity-bytestring genvalidity-hspec genvalidity-hspec-aeson
hspec path path-io pretty-show QuickCheck
];
benchmarkHaskellDepends = [
base criterion dirforest genvalidity genvalidity-criterion
genvalidity-text
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/dirforest#readme";
license = "unknown";
}
\ No newline at end of file
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