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

unagi-chan: init at 0.4.1.4

parent 51fc1079
No related merge requests found
......@@ -573,6 +573,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/parsonsmatt/typerep-map"
(Some "75b7cd5d45986be07420a6821d352ad2adc0b697")
(None Text)
, callHackage "unagi-chan" "0.4.1.4"
, callHackage "unicode-collation" "0.1.3.2"
, callHackage "unicode-data" "0.4.0"
, callHackage "unicode-transforms" "0.4.0.1"
......
......@@ -761,6 +761,8 @@ final: prev: with pkgs.haskell.lib; {
typerep-map = prev.callPackage (./pkgs/typerep-map.nix) { };
unagi-chan = prev.callPackage (./pkgs/unagi-chan.nix) { };
unicode-collation = prev.callPackage (./pkgs/unicode-collation.nix) { };
unicode-data = prev.callPackage (./pkgs/unicode-data.nix) { };
......
{ mkDerivation
, async
, atomic-primops
, base
, containers
, criterion
, ghc-prim
, lib
, primitive
}:
mkDerivation {
pname = "unagi-chan";
version = "0.4.1.4";
sha256 = "d9d6f4ab07def8e84a942bb23791830a61faf89166cb7185a3b2f97cb45128b5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ];
testHaskellDepends = [
atomic-primops
base
containers
ghc-prim
primitive
];
benchmarkHaskellDepends = [ async base criterion ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Fast concurrent queues with a Chan-like API, and more";
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