mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 02:24:27 +00:00
16 lines
441 B
Nix
16 lines
441 B
Nix
{ cabal, text }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "mime";
|
|
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 ];
|
|
};
|
|
})
|