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

bytestring-handle: init at 0.1.0.6

parent 22ff0073
No related merge requests found
...@@ -126,6 +126,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -126,6 +126,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "byteable" "0.1.1" , callHackage "byteable" "0.1.1"
, callHackage "byteorder" "1.0.4" , callHackage "byteorder" "1.0.4"
, callHackage "bytestring-builder" "0.10.8.2.0" , callHackage "bytestring-builder" "0.10.8.2.0"
, callHackage "bytestring-handle" "0.1.0.6"
, callHackage "bytes" "0.17.2" , callHackage "bytes" "0.17.2"
, callHackage "c2hs" "0.28.8" , callHackage "c2hs" "0.28.8"
, callHackage "cabal-doctest" "1.0.9" , callHackage "cabal-doctest" "1.0.9"
......
...@@ -147,6 +147,8 @@ self: with pkgs.haskell.lib; { ...@@ -147,6 +147,8 @@ self: with pkgs.haskell.lib; {
bytestring-builder = self.callPackage (./pkgs/bytestring-builder.nix) { }; bytestring-builder = self.callPackage (./pkgs/bytestring-builder.nix) { };
bytestring-handle = self.callPackage (./pkgs/bytestring-handle.nix) { };
c2hs = self.callPackage (./pkgs/c2hs.nix) { }; c2hs = self.callPackage (./pkgs/c2hs.nix) { };
cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { }; cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { };
......
{ mkDerivation
, base
, bytestring
, HUnit
, lib
, QuickCheck
, test-framework
, test-framework-hunit
, test-framework-quickcheck2
}:
mkDerivation {
pname = "bytestring-handle";
version = "0.1.0.6";
sha256 = "fe681cdf7e2238389b6d2090e264b10d0e5085658c89e7ffc870c7a0a43ac1a1";
revision = "2";
editedCabalFile = "1x1sy3dz2ph9v6jk22wmcv5gk2bka5fv4s68i8q0j9m9pk085w37";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base bytestring ];
testHaskellDepends = [
base
bytestring
HUnit
QuickCheck
test-framework
test-framework-hunit
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://hub.darcs.net/ganesh/bytestring-handle";
description = "ByteString-backed Handles";
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