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

charset: init at 0.3.9

parent e286e95e
No related merge requests found
...@@ -116,6 +116,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -116,6 +116,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "cereal" "0.5.8.3" , callHackage "cereal" "0.5.8.3"
, callHackage "cborg" "0.2.8.0" , callHackage "cborg" "0.2.8.0"
, callHackage "cborg-json" "0.2.5.0" , callHackage "cborg-json" "0.2.5.0"
, callHackage "charset" "0.3.9"
, callHackage "citeproc" "0.8.0.1" , callHackage "citeproc" "0.8.0.1"
, callHackage "co-log-core" "0.3.1.0" , callHackage "co-log-core" "0.3.1.0"
, callHackage "co-log-polysemy" "0.0.1.3" , callHackage "co-log-polysemy" "0.0.1.3"
......
...@@ -107,6 +107,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -107,6 +107,8 @@ final: prev: with pkgs.haskell.lib; {
cereal = prev.callPackage (./pkgs/cereal.nix) { }; cereal = prev.callPackage (./pkgs/cereal.nix) { };
charset = prev.callPackage (./pkgs/charset.nix) { };
citeproc = prev.callPackage (./pkgs/citeproc.nix) { }; citeproc = prev.callPackage (./pkgs/citeproc.nix) { };
co-log-core = prev.callPackage (./pkgs/co-log-core.nix) { }; co-log-core = prev.callPackage (./pkgs/co-log-core.nix) { };
......
{ mkDerivation
, array
, base
, bytestring
, containers
, lib
, unordered-containers
}:
mkDerivation {
pname = "charset";
version = "0.3.9";
sha256 = "cb4f8781491d1e346e7eef7b33bfadae96642c81777165ec585a05591abc998b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array
base
bytestring
containers
unordered-containers
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/charset";
description = "Fast unicode character sets based on complemented PATRICIA tries";
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