1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-02 10:31:36 +00:00
nixpkgs/pkgs/development/libraries/haskell/mime/default.nix

16 lines
441 B
Nix
Raw Normal View History

2014-02-05 09:42:56 +00:00
{ cabal, text }:
cabal.mkDerivation (self: {
pname = "mime";
2014-02-05 09:42:56 +00:00
version = "0.4.0";
sha256 = "159jp7dcyx26slda2743zdr2prnm707mnglcb9p66hr1wjh98kx4";
buildDepends = [ text ];
meta = {
homepage = "https://github.com/GaloisInc/mime";
description = "Working with MIME types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ocharles ];
};
})