Skip to content
Snippets Groups Projects
Unverified Commit e9d47e92 authored by Marijan Petričević's avatar Marijan Petričević
Browse files

data-dword: init at 0.3.2.1

parent 72e63449
Branches
No related merge requests found
......@@ -155,6 +155,7 @@ let packages =
, cursor-gen = H.callHackage "cursor-gen" "0.4.0.0"
, data-binary-ieee754 = H.callHackage "data-binary-ieee754" "0.4.4"
, data-bword = H.callHackage "data-bword" "0.1.0.2"
, data-dword = H.callHackage "data-dword" "0.3.2.1"
, data-checked = H.callHackage "data-checked" "0.3"
, data-endian = H.callHackage "data-endian" "0.1.1"
, data-ordlist = H.callHackage "data-ordlist" "0.4.7.0"
......
......@@ -474,6 +474,10 @@
, mapValue =
"2bd00dfe8dd52f1b4018dca78c44cc7a40909619550a6c49b20bb86b805f14fd"
}
, { mapKey = "data-dword"
, mapValue =
"310100a03408bde7002169c4c15c7f8052ae57dcc8bdaef4f789cef9479ce1f4"
}
, { mapKey = "data-endian"
, mapValue =
"140ab2b54e94c8f7817ac37836ef88794b7f2bd0867b7b07c4bac248a374b519"
......
......@@ -239,6 +239,8 @@ final: prev: with pkgs.haskell.lib; {
data-checked = final.callPackage (./pkgs/data-checked.nix) { };
data-dword = final.callPackage (./pkgs/data-dword.nix) { };
data-endian = final.callPackage (./pkgs/data-endian.nix) { };
data-ordlist = final.callPackage (./pkgs/data-ordlist.nix) { };
......
{ mkDerivation, base, data-bword, ghc-prim, hashable, lib, tasty
, tasty-quickcheck, template-haskell
}:
mkDerivation {
pname = "data-dword";
version = "0.3.2.1";
sha256 = "1114f1efd8f8e80517f7a1df7e73e8a0f3dcc9414f3ba5669f05b29f90dfdd50";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base data-bword ghc-prim hashable template-haskell
];
testHaskellDepends = [ base tasty tasty-quickcheck ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/mvv/data-dword";
description = "Stick two binary words together to get a bigger one";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
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