diff --git a/manifest.dhall b/manifest.dhall index 641cb0ee7a8158b3e6b1261c3f202719d6ddf9bc..7db777ddf4058c84bf59c5b715d810b1dcd0cde4 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -66,6 +66,7 @@ in [ callHackage "Cabal" "3.8.1.0" (Some "Cabal-tree-diff") , callHackage "ChasingBottoms" "1.3.1.12" , callHackage "Diff" "0.4.1" + , callHackage "Glob" "0.10.2" , callHackage "HTTP" "4000.4.1" , callHackage "HUnit" "1.6.2.0" , callHackage "JuicyPixels" "3.3.8" diff --git a/overlay.nix b/overlay.nix index 6ba80fa295ee6090ce24e18e7e8757f222813ffc..70ef3015b289be9e9a14a6d6b9010b1e4ba25ffd 100644 --- a/overlay.nix +++ b/overlay.nix @@ -15,6 +15,8 @@ self: with pkgs.haskell.lib; { Diff = self.callPackage (./pkgs/Diff.nix) { }; + Glob = self.callPackage (./pkgs/Glob.nix) { }; + HTTP = self.callPackage (./pkgs/HTTP.nix) { }; HUnit = self.callPackage (./pkgs/HUnit.nix) { }; diff --git a/pkgs/Glob.nix b/pkgs/Glob.nix new file mode 100644 index 0000000000000000000000000000000000000000..7f84e8f81e33e8268e3e90d9d37243de9fe5884d --- /dev/null +++ b/pkgs/Glob.nix @@ -0,0 +1,59 @@ +{ mkDerivation +, base +, containers +, directory +, dlist +, filepath +, HUnit +, lib +, QuickCheck +, test-framework +, test-framework-hunit +, test-framework-quickcheck2 +, transformers +, transformers-compat +}: +mkDerivation { + pname = "Glob"; + version = "0.10.2"; + sha256 = "6af672ac8427d35cbd42d64142dc288feab266f0be92dae3c696e8860d8173c0"; + revision = "3"; + editedCabalFile = "1080rd5073g87rfm5whimb72b75105lqanybrbsfi14gmvndnbfx"; + isLibrary = true; + isExecutable = false; + enableSeparateDataOutput = false; + libraryHaskellDepends = [ + base + containers + directory + dlist + filepath + transformers + transformers-compat + ]; + testHaskellDepends = [ + base + containers + directory + dlist + filepath + HUnit + QuickCheck + test-framework + test-framework-hunit + test-framework-quickcheck2 + transformers + transformers-compat + ]; + enableLibraryProfiling = false; + enableExecutableProfiling = false; + doHaddock = false; + jailbreak = true; + doCheck = false; + doBenchmark = false; + hyperlinkSource = false; + homepage = "http://iki.fi/matti.niemenmaa/glob/"; + description = "Globbing library"; + license = lib.licenses.bsd3; + broken = false; +}