1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/dependent-map/default.nix
2013-05-21 11:00:41 +02:00

15 lines
421 B
Nix

{ cabal, dependentSum }:
cabal.mkDerivation (self: {
pname = "dependent-map";
version = "0.1.1.1";
sha256 = "1p5a5qahw7i6cvb0g0g1bv9gzy6jlxr5vb3hp8gahm210zw8g990";
buildDepends = [ dependentSum ];
meta = {
homepage = "https://github.com/mokus0/dependent-map";
description = "Dependent finite maps (partial dependent products)";
license = "unknown";
platforms = self.ghc.meta.platforms;
};
})