From 86f30751933cdeff0d7660cdf145a731daf17f1d Mon Sep 17 00:00:00 2001 From: Daniel Firth <dan.firth@homotopic.tech> Date: Sat, 5 Nov 2022 08:51:14 +0000 Subject: [PATCH] uuid-types: init at 1.0.5 --- manifest.dhall | 1 + overlay.nix | 2 ++ pkgs/uuid-types.nix | 58 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 61 insertions(+) create mode 100644 pkgs/uuid-types.nix diff --git a/manifest.dhall b/manifest.dhall index 8e39e05e..ab82c2cd 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 9f5b428b..badf8d10 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 00000000..735d8b29 --- /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; +} -- GitLab