summary refs log tree commit diff
path: root/pkgs/development/libraries/mimetic
diff options
context:
space:
mode:
authorMichiel Leenaars <ml.software@leenaa.rs>2016-05-17 12:12:57 +0200
committerJoachim Fasting <joachifm@fastmail.fm>2016-06-16 14:41:59 +0200
commitc7016de72c0c40f0ae77694c377052e639e2e2a4 (patch)
treec0fcbf62328df1ae2d0c40f658273865d4cd7531 /pkgs/development/libraries/mimetic
parent875fd5af739bbf0c29bd8d1b271dbd8b806981e7 (diff)
downloadnixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar.gz
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar.bz2
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar.lz
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar.xz
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.tar.zst
nixpkgs-c7016de72c0c40f0ae77694c377052e639e2e2a4.zip
mimetic: init at 0.9.8
Closes #16258
Diffstat (limited to 'pkgs/development/libraries/mimetic')
-rw-r--r--pkgs/development/libraries/mimetic/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mimetic/default.nix b/pkgs/development/libraries/mimetic/default.nix
new file mode 100644
index 00000000000..fc48c85f23c
--- /dev/null
+++ b/pkgs/development/libraries/mimetic/default.nix
@@ -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;
+  };
+}