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

tuple: init at 0.3.0.2

parent 026e5205
Branches
Tags
No related merge requests found
......@@ -738,6 +738,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "transformers-compat" "0.7.2"
, callHackage "tree-diff" "0.2.2"
, callHackage "trifecta" "2.1.2"
, callHackage "tuple" "0.3.0.2"
, callHackage "turtle" "1.6.1"
, callHackage "typed-process" "0.2.10.1"
, callHackage "type-errors-pretty" "0.0.1.2"
......
......@@ -1119,6 +1119,8 @@ self: with pkgs.haskell.lib; {
trifecta = self.callPackage (./pkgs/trifecta.nix) { };
tuple = self.callPackage (./pkgs/tuple.nix) { };
turtle = self.callPackage (./pkgs/turtle.nix) { };
type-equality = self.callPackage (./pkgs/type-equality.nix) { };
......
{ mkDerivation, base, lib, OneTuple }:
mkDerivation {
pname = "tuple";
version = "0.3.0.2";
sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base OneTuple ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Various functions on tuples";
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