rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / altermime / default.nix
blob812da5f8742ef64d109a4455b4e358ed404b5940
1 { lib, gccStdenv, fetchurl }:
3 gccStdenv.mkDerivation rec {
4   pname = "altermime";
5   version = "0.3.11";
7   src = fetchurl {
8     url = "https://pldaniels.com/${pname}/${pname}-${version}.tar.gz";
9     sha256 = "15zxg6spcmd35r6xbidq2fgcg2nzyv1sbbqds08lzll70mqx4pj7";
10   };
12   env.NIX_CFLAGS_COMPILE = toString [
13     "-Wno-error=format"
14     "-Wno-error=format-truncation"
15     "-Wno-error=pointer-compare"
16     "-Wno-error=memset-elt-size"
17     "-Wno-error=restrict"
18   ];
20   postPatch = ''
21     mkdir -p $out/bin
22     substituteInPlace Makefile --replace "/usr/local" "$out"
23   '';
25   meta = with lib; {
26     description = "MIME alteration tool";
27     maintainers = [ maintainers.raskin ];
28     platforms = platforms.all;
29     license.fullName = "alterMIME LICENSE";
30     downloadPage = "https://pldaniels.com/altermime/";
31     mainProgram = "altermime";
32   };