Skip to content
Snippets Groups Projects
Commit 85aecf1f authored by Max Tomago's avatar Max Tomago
Browse files

int-cast: 0.2.0.0

parent 4153f91e
No related merge requests found
......@@ -174,6 +174,7 @@ in [ callHackage "HTF" "0.15.0.0"
"https://github.com/tweag/HaskellR"
(Some "fe9b5bd06cd4d3988e47b9933b11d83b6108e255")
(Some "inline-r")
, callHackage "int-cast" "0.2.0.0"
, callCabal2nix
"measures"
"https://github.com/input-output-hk/cardano-base"
......
......@@ -113,6 +113,8 @@ final: prev: with pkgs.haskell.lib; {
inline-r = prev.callPackage (./pkgs/inline-r.nix) { };
int-cast = prev.callPackage (./pkgs/int-cast.nix) { };
lazysmallcheck = prev.callPackage (./pkgs/lazysmallcheck.nix) { };
list-t = prev.callPackage (./pkgs/list-t.nix) { };
......
{ mkDerivation
, base
, lib
, QuickCheck
, test-framework
, test-framework-quickcheck2
}:
mkDerivation {
pname = "int-cast";
version = "0.2.0.0";
sha256 = "e006956a08b751a996a92828ccb728b7237c9c435c4b35b5169eb8d44ac51969";
revision = "4";
editedCabalFile = "1l5n3hsa8gr0wzc3cb32ha2j8kcf976i84z04580q41macf0r0h6";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
testHaskellDepends = [
base
QuickCheck
test-framework
test-framework-quickcheck2
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/hvr/int-cast";
description = "Checked conversions between integral types";
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