diff --git a/manifest.dhall b/manifest.dhall index 8e39e05eef169e8e14fe1ca98a6268774095cc09..ab82c2cdb92c7b76c4c58ab7b9f9220ae6984aa6 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -514,6 +514,7 @@ in [ callHackage "Cabal" "3.8.1.0" , callHackage "unliftio-core" "0.2.0.1" , callHackage "unliftio" "0.2.23.0" , callHackage "unordered-containers" "0.2.19.1" + , callHackage "uuid-types" "1.0.5" , callHackage "validity" "0.12.0.1" , callHackage "validity-aeson" "0.2.0.5" , callHackage "validity-bytestring" "0.4.1.1" diff --git a/overlay.nix b/overlay.nix index 9f5b428b268249b6c06989337f4568249bc050c9..badf8d104b78e2f0135106fd9bd77fef03285735 100644 --- a/overlay.nix +++ b/overlay.nix @@ -645,6 +645,8 @@ final: prev: with pkgs.haskell.lib; { unordered-containers = prev.callPackage (./pkgs/unordered-containers.nix) { }; + uuid-types = prev.callPackage (./pkgs/uuid-types.nix) { }; + validity = prev.callPackage (./pkgs/validity.nix) { }; validity-aeson = prev.callPackage (./pkgs/validity-aeson.nix) { }; diff --git a/pkgs/uuid-types.nix b/pkgs/uuid-types.nix new file mode 100644 index 0000000000000000000000000000000000000000..735d8b296b105f8045d0a84d01630e0ce38cca64 --- /dev/null +++ b/pkgs/uuid-types.nix @@ -0,0 +1,58 @@ +{ mkDerivation +, base +, binary +, bytestring +, deepseq +, ghc-byteorder +, hashable +, lib +, QuickCheck +, random +, tasty +, tasty-hunit +, tasty-quickcheck +, template-haskell +, text +}: +mkDerivation { + pname = "uuid-types"; + version = "1.0.5"; + sha256 = "ad68b89b7a64c07dd5c250a11be2033ee929318ff51ec7b4e4b54e1b4deba7dd"; + revision = "3"; + editedCabalFile = "10hpjshw6z8xnjpga47cazfdd4i27qvy4ash13lza2lmwf36k9ww"; + isLibrary = true; + isExecutable = false; + enableSeparateDataOutput = false; + libraryHaskellDepends = [ + base + binary + bytestring + deepseq + hashable + random + template-haskell + text + ]; + testHaskellDepends = [ + base + binary + bytestring + ghc-byteorder + QuickCheck + tasty + tasty-hunit + tasty-quickcheck + template-haskell + ]; + enableLibraryProfiling = false; + enableExecutableProfiling = false; + doHaddock = false; + jailbreak = true; + doCheck = false; + doBenchmark = false; + hyperlinkSource = false; + homepage = "https://github.com/haskell-hvr/uuid"; + description = "Type definitions for Universally Unique Identifiers"; + license = lib.licenses.bsd3; + broken = false; +}