summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/multiset/0.2.1.nix
blob: 9f85317505c90c6492120c690116d0b3c9e602d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "multiset";
  version = "0.2.1";
  sha256 = "0snlm6s9ikf5gngdwb7rm7v6017f5bffajv6777y56pjmd7bk9sy";
  meta = {
    description = "The Data.MultiSet container type";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})