nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, cutee }:
2
3stdenv.mkDerivation rec {
4 pname = "mimetic";
5 version = "0.9.8";
6 name = "${pname}-${version}";
7
8 src = fetchurl {
9 url = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
10 sha256 = "003715lvj4nx23arn1s9ss6hgc2yblkwfy5h94li6pjz2a6xc1rs";
11 };
12
13 buildInputs = [ cutee ];
14
15 meta = with stdenv.lib; {
16 description = "MIME handling library";
17 homepage = http://codesink.org/mimetic_mime_library.html;
18 license = licenses.mit;
19 maintainers = with maintainers; [ leenaars];
20 platforms = platforms.linux;
21 };
22}