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

primitive-offset: init at 0.2.0.0

parent c22270ca
No related merge requests found
......@@ -309,6 +309,7 @@ let otherLibraries =
"https://github.com/milloni/plutus"
"81cd1ada745c12af2c2c28afce1f6b6b28b38fdd"
(Some "prettyprinter-configurable")
, H.callHackage "primitive-offset" "0.2.0.0"
, H.callHackage "protolude" "0.3.2"
, H.callHackage "pqueue" "1.4.3.0"
, H.callHackage "quickcheck-arbitrary-adt" "0.3.1.0"
......
......@@ -297,6 +297,8 @@ final: prev: with pkgs.haskell.lib; {
prettyprinter-configurable = final.callPackage (./pkgs/prettyprinter-configurable.nix) { };
primitive-offset = final.callPackage (./pkgs/primitive-offset.nix) { };
protolude = final.callPackage (./pkgs/protolude.nix) { };
quickcheck-arbitrary-adt = final.callPackage (./pkgs/quickcheck-arbitrary-adt.nix) { };
......
{ mkDerivation, base, lib, primitive }:
mkDerivation {
pname = "primitive-offset";
version = "0.2.0.0";
sha256 = "b15e7de9ebf36ec12b4e2fac2a2c3cefd2b99afa76231fbd0b5cf5d03f6d572b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base primitive ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/andrewthad/primitive-offset";
description = "Types for offsets into unboxed arrays";
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