2016-05-17 11:12:57 +01:00
|
|
|
{ stdenv, fetchurl, cutee }:
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "MIME handling library";
|
2018-02-14 10:56:03 +00:00
|
|
|
homepage = http://www.codesink.org/mimetic_mime_library.html;
|
2016-05-17 11:12:57 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ leenaars];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|