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

attoparsec-binary: init at 0.2

parent 87e61720
Branches
Tags
No related merge requests found
...@@ -83,6 +83,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -83,6 +83,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "assoc" "1.0.2" , callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4" , callHackage "async" "2.2.4"
, callHackage "atomic-primops" "0.8.4" , callHackage "atomic-primops" "0.8.4"
, callHackage "attoparsec-binary" "0.2"
, callHackage "attoparsec-iso8601" "1.1.0.0" , callHackage "attoparsec-iso8601" "1.1.0.0"
, callHackage "attoparsec" "0.14.4" , callHackage "attoparsec" "0.14.4"
, callHackage "autodocodec" "0.2.0.1" , callHackage "autodocodec" "0.2.0.1"
......
...@@ -51,6 +51,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -51,6 +51,8 @@ final: prev: with pkgs.haskell.lib; {
attoparsec = prev.callPackage (./pkgs/attoparsec.nix) { }; attoparsec = prev.callPackage (./pkgs/attoparsec.nix) { };
attoparsec-binary = prev.callPackage (./pkgs/attoparsec-binary.nix) { };
attoparsec-iso8601 = prev.callPackage (./pkgs/attoparsec-iso8601.nix) { }; attoparsec-iso8601 = prev.callPackage (./pkgs/attoparsec-iso8601.nix) { };
autodocodec = prev.callPackage (./pkgs/autodocodec.nix) { }; autodocodec = prev.callPackage (./pkgs/autodocodec.nix) { };
......
{ mkDerivation, attoparsec, base, bytestring, lib }:
mkDerivation {
pname = "attoparsec-binary";
version = "0.2";
sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ attoparsec base bytestring ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Binary processing extensions to Attoparsec";
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