summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/multiset/default.nix
blob: 995e573f3e5b7cbbed07eca74117cd04414a53af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, Cabal }:

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