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

base16-bytestring: init at 1.0.2.0

parent eaaca749
Branches
Tags
No related merge requests found
......@@ -95,6 +95,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "autodocodec-yaml" "0.2.0.2"
, callHackage "barbies" "2.0.3.1"
, callHackage "basement" "0.0.15"
, callHackage "base16-bytestring" "1.0.2.0"
, callHackage "base64" "0.4.2.4"
, callHackage "base-compat" "0.12.2"
, callHackage "base-compat-batteries" "0.12.2"
......
......@@ -75,6 +75,8 @@ self: with pkgs.haskell.lib; {
base-compat-batteries = self.callPackage (./pkgs/base-compat-batteries.nix) { };
base16-bytestring = self.callPackage (./pkgs/base16-bytestring.nix) { };
base64 = self.callPackage (./pkgs/base64.nix) { };
basement = self.callPackage (./pkgs/basement.nix) { };
......
{ mkDerivation
, base
, bytestring
, criterion
, deepseq
, HUnit
, lib
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "base16-bytestring";
version = "1.0.2.0";
sha256 = "1d5a91143ef0e22157536093ec8e59d226a68220ec89378d5dcaeea86472c784";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
HUnit
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
];
benchmarkHaskellDepends = [ base bytestring criterion deepseq ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/haskell/base16-bytestring";
description = "RFC 4648-compliant Base16 encodings for ByteStrings";
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