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

distributive: init at 0.6.2.1

parent b8668219
Branches
Tags
No related merge requests found
...@@ -170,6 +170,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -170,6 +170,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "69e8ae036b047fae105c1fe990e175a7572a3eba") (Some "69e8ae036b047fae105c1fe990e175a7572a3eba")
(Some "dirforest") (Some "dirforest")
, callHackage "distribution-nixpkgs" "1.7.0" , callHackage "distribution-nixpkgs" "1.7.0"
, callHackage "distributive" "0.6.2.1"
, callCabal2nix , callCabal2nix
"doctest" "doctest"
"https://github.com/sol/doctest" "https://github.com/sol/doctest"
......
...@@ -175,6 +175,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -175,6 +175,8 @@ final: prev: with pkgs.haskell.lib; {
distribution-nixpkgs = prev.callPackage (./pkgs/distribution-nixpkgs.nix) { }; distribution-nixpkgs = prev.callPackage (./pkgs/distribution-nixpkgs.nix) { };
distributive = prev.callPackage (./pkgs/distributive.nix) { };
doctemplates = prev.callPackage (./pkgs/doctemplates.nix) { }; doctemplates = prev.callPackage (./pkgs/doctemplates.nix) { };
doctest = prev.callPackage (./pkgs/doctest.nix) { }; doctest = prev.callPackage (./pkgs/doctest.nix) { };
......
{ mkDerivation
, base
, base-orphans
, generic-deriving
, hspec
, hspec-discover
, lib
, tagged
, transformers
}:
mkDerivation {
pname = "distributive";
version = "0.6.2.1";
sha256 = "d7351392e078f58caa46630a4b9c643e1e2e9dddee45848c5c8358e7b1316b91";
revision = "1";
editedCabalFile = "033890dfyd23dh7g7px863l0hr1b881jnhv4kgwaq16a3iagb68g";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base base-orphans tagged transformers ];
testHaskellDepends = [ base generic-deriving hspec ];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/ekmett/distributive/";
description = "Distributive functors -- Dual to Traversable";
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