From 9dd9aea4d58f954e0b4ac22198bfda571bd57d5e Mon Sep 17 00:00:00 2001 From: Daniel Firth <dan.firth@homotopic.tech> Date: Mon, 7 Nov 2022 11:33:56 +0000 Subject: [PATCH] ordered-containers: init at 0.2.3 --- manifest.dhall | 1 + overlay.nix | 2 ++ pkgs/ordered-containers.nix | 20 ++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 pkgs/ordered-containers.nix diff --git a/manifest.dhall b/manifest.dhall index 6255b0ed..0fcf8df3 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -469,6 +469,7 @@ in [ callHackage "Cabal" "3.8.1.0" , callHackage "optics-th" "0.4.1" , callHackage "optics" "0.4.2" , callHackage "optparse-applicative" "0.17.0.0" + , callHackage "ordered-containers" "0.2.3" , callHackage "parsers" "0.12.11" , callHackage "parser-combinators" "1.3.0" , callHackage "pandoc-lua-marshal" "0.1.7" diff --git a/overlay.nix b/overlay.nix index cebfef48..3b76a99b 100644 --- a/overlay.nix +++ b/overlay.nix @@ -679,6 +679,8 @@ self: with pkgs.haskell.lib; { optparse-applicative = self.callPackage (./pkgs/optparse-applicative.nix) { }; + ordered-containers = self.callPackage (./pkgs/ordered-containers.nix) { }; + pandoc = self.callPackage (./pkgs/pandoc.nix) { }; pandoc-lua-marshal = self.callPackage (./pkgs/pandoc-lua-marshal.nix) { }; diff --git a/pkgs/ordered-containers.nix b/pkgs/ordered-containers.nix new file mode 100644 index 00000000..89a18317 --- /dev/null +++ b/pkgs/ordered-containers.nix @@ -0,0 +1,20 @@ +{ mkDerivation, base, containers, lib }: +mkDerivation { + pname = "ordered-containers"; + version = "0.2.3"; + sha256 = "36849705752f3bc367fa1d172e1ec57375418341e9d74de572ae1b6fb56a81a3"; + isLibrary = true; + isExecutable = false; + enableSeparateDataOutput = false; + libraryHaskellDepends = [ base containers ]; + enableLibraryProfiling = false; + enableExecutableProfiling = false; + doHaddock = false; + jailbreak = true; + doCheck = false; + doBenchmark = false; + hyperlinkSource = false; + description = "Set- and Map-like types that remember the order elements were inserted"; + license = lib.licenses.bsd3; + broken = false; +} -- GitLab