mimetic: init at 0.9.8

Closes #16258
This commit is contained in:
Michiel Leenaars 2016-05-17 12:12:57 +02:00 committed by Joachim Fasting
parent 875fd5af73
commit c7016de72c
No known key found for this signature in database
GPG Key ID: 4330820E1E04DCF4
2 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,22 @@
{ stdenv, fetchurl, cutee }:
stdenv.mkDerivation rec {
pname = "mimetic";
version = "0.9.8";
name = "${pname}-${version}";
src = fetchurl {
url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
sha256 = "003715lvj4nx23arn1s9ss6hgc2yblkwfy5h94li6pjz2a6xc1rs";
};
buildInputs = [ cutee ];
meta = with stdenv.lib; {
description = "MIME handling library";
homepage = http://codesink.org/mimetic_mime_library.html;
license = licenses.mit;
maintainers = with maintainers; [ leenaars];
platforms = platforms.linux;
};
}

View File

@ -2429,6 +2429,8 @@ in
mimeo = callPackage ../tools/misc/mimeo { };
mimetic = callPackage ../development/libraries/mimetic { };
minissdpd = callPackage ../tools/networking/minissdpd { };
miniupnpc = callPackage ../tools/networking/miniupnpc { };