nixpkgs/pkgs/development/libraries/haskell/hashable/default.nix

15 lines
366 B
Nix
Raw Normal View History

{cabal, text}:
cabal.mkDerivation (self : {
pname = "hashable";
version = "1.1.2.1";
sha256 = "1kmx3jr9cmkbapd7gywx7zvyd22nyz2mgs8lnzspp5hi7crx3wcx";
propagatedBuildInputs = [text];
meta = {
description = "A class for types that can be converted to a hash value";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})