nixpkgs/pkgs/development/libraries/mimetic/default.nix

24 lines
620 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, cutee }:
2016-05-17 10:12:57 +00:00
stdenv.mkDerivation rec {
pname = "mimetic";
version = "0.9.8";
src = fetchurl {
url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
sha256 = "003715lvj4nx23arn1s9ss6hgc2yblkwfy5h94li6pjz2a6xc1rs";
};
buildInputs = [ cutee ];
patches = lib.optional stdenv.isAarch64 ./narrowing.patch;
2020-07-30 17:46:17 +00:00
meta = with lib; {
2016-05-17 10:12:57 +00:00
description = "MIME handling library";
homepage = "http://www.codesink.org/mimetic_mime_library.html";
2016-05-17 10:12:57 +00:00
license = licenses.mit;
maintainers = with maintainers; [ leenaars];
platforms = platforms.linux;
};
}