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

byteable: init at 0.1.1

parent c46513a9
Branches
Tags
No related merge requests found
......@@ -117,6 +117,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "bsb-http-chunked" "0.0.0.4"
, callHackage "breakpoint" "0.1.1.1"
, callHackage "brick" "1.3"
, callHackage "byteable" "0.1.1"
, callHackage "bytes" "0.17.2"
, callHackage "cabal-doctest" "1.0.9"
, callHackage "cabal-install" "3.8.1.0"
......
......@@ -117,6 +117,8 @@ self: with pkgs.haskell.lib; {
bsb-http-chunked = self.callPackage (./pkgs/bsb-http-chunked.nix) { };
byteable = self.callPackage (./pkgs/byteable.nix) { };
bytes = self.callPackage (./pkgs/bytes.nix) { };
cabal-doctest = self.callPackage (./pkgs/cabal-doctest.nix) { };
......
{ mkDerivation, base, bytestring, lib }:
mkDerivation {
pname = "byteable";
version = "0.1.1";
sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = true;
libraryHaskellDepends = [ base bytestring ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/vincenthz/hs-byteable";
description = "Type class for sequence of bytes";
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