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

groups: init at 0.5.3

parent c1c13166
Branches
Tags
No related merge requests found
...@@ -341,6 +341,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -341,6 +341,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "githash" "0.1.6.3" , callHackage "githash" "0.1.6.3"
, callHackage "gitrev" "1.3.1" , callHackage "gitrev" "1.3.1"
, callHackage "gridtables" "0.1.0.0" , callHackage "gridtables" "0.1.0.0"
, callHackage "groups" "0.5.3"
, callHackage "hackage-db" "2.1.2" , callHackage "hackage-db" "2.1.2"
, callHackage "hackage-security" "0.6.2.2" , callHackage "hackage-security" "0.6.2.2"
, callHackage "haddock-library" "1.11.0" , callHackage "haddock-library" "1.11.0"
......
...@@ -487,6 +487,8 @@ self: with pkgs.haskell.lib; { ...@@ -487,6 +487,8 @@ self: with pkgs.haskell.lib; {
gridtables = self.callPackage (./pkgs/gridtables.nix) { }; gridtables = self.callPackage (./pkgs/gridtables.nix) { };
groups = self.callPackage (./pkgs/groups.nix) { };
hackage-db = self.callPackage (./pkgs/hackage-db.nix) { }; hackage-db = self.callPackage (./pkgs/hackage-db.nix) { };
hackage-security = self.callPackage (./pkgs/hackage-security.nix) { }; hackage-security = self.callPackage (./pkgs/hackage-security.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "groups";
version = "0.5.3";
sha256 = "ce1e52a8be7effbd1f995eadf0ed34fa45c412656d372db8a38f9c955e43ac38";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Groups";
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