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

indexed-profunctors: init at 0.1.1

parent 5adf73e8
No related merge requests found
......@@ -366,6 +366,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "ieee754" "0.8.0"
, callHackage "incipit-base" "0.3.0.0"
, callHackage "incipit-core" "0.3.0.0"
, callHackage "indexed-profunctors" "0.1.1"
, callHackage "indexed-traversable-instances" "0.1.1.1"
, callHackage "indexed-traversable" "0.1.2"
, callHackage "infer-license" "0.2.0"
......
......@@ -521,6 +521,8 @@ self: with pkgs.haskell.lib; {
incipit-core = self.callPackage (./pkgs/incipit-core.nix) { };
indexed-profunctors = self.callPackage (./pkgs/indexed-profunctors.nix) { };
indexed-traversable = self.callPackage (./pkgs/indexed-traversable.nix) { };
indexed-traversable-instances = self.callPackage (./pkgs/indexed-traversable-instances.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "indexed-profunctors";
version = "0.1.1";
sha256 = "5aba418a92a4f75efc626de7c0e4d88ed57033e0de0f2743ce6d9c9ef7626cb1";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Utilities for indexed profunctors";
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