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

ordered-containers: init at 0.2.3

parent 0498d22d
No related merge requests found
...@@ -469,6 +469,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -469,6 +469,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "optics-th" "0.4.1" , callHackage "optics-th" "0.4.1"
, callHackage "optics" "0.4.2" , callHackage "optics" "0.4.2"
, callHackage "optparse-applicative" "0.17.0.0" , callHackage "optparse-applicative" "0.17.0.0"
, callHackage "ordered-containers" "0.2.3"
, callHackage "parsers" "0.12.11" , callHackage "parsers" "0.12.11"
, callHackage "parser-combinators" "1.3.0" , callHackage "parser-combinators" "1.3.0"
, callHackage "pandoc-lua-marshal" "0.1.7" , callHackage "pandoc-lua-marshal" "0.1.7"
......
...@@ -679,6 +679,8 @@ self: with pkgs.haskell.lib; { ...@@ -679,6 +679,8 @@ self: with pkgs.haskell.lib; {
optparse-applicative = self.callPackage (./pkgs/optparse-applicative.nix) { }; optparse-applicative = self.callPackage (./pkgs/optparse-applicative.nix) { };
ordered-containers = self.callPackage (./pkgs/ordered-containers.nix) { };
pandoc = self.callPackage (./pkgs/pandoc.nix) { }; pandoc = self.callPackage (./pkgs/pandoc.nix) { };
pandoc-lua-marshal = self.callPackage (./pkgs/pandoc-lua-marshal.nix) { }; pandoc-lua-marshal = self.callPackage (./pkgs/pandoc-lua-marshal.nix) { };
......
{ 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;
}
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