mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
16 lines
519 B
Nix
16 lines
519 B
Nix
{ cabal, hashable, nats, text, unorderedContainers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "semigroups";
|
|
version = "0.11";
|
|
sha256 = "0w81ap41j28pbppqs33hz7b9n5ghyj2hnny0kgxgcg8iv2qg9czy";
|
|
buildDepends = [ hashable nats text unorderedContainers ];
|
|
meta = {
|
|
homepage = "http://github.com/ekmett/semigroups/";
|
|
description = "Anything that associates";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|