mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
bf414c9d4f
- there were many easy merge conflicts - cc-wrapper needed nontrivial changes Many other problems might've been created by interaction of the branches, but stdenv and a few other packages build fine now.
24 lines
621 B
Nix
24 lines
621 B
Nix
{ stdenv, fetchurl, pkgconfig, glib, zlib, libgpgerror }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gmime-2.6.20";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/gmime/2.6/${name}.tar.xz";
|
|
sha256 = "0rfzbgsh8ira5p76kdghygl5i3fvmmx4wbw5rp7f8ajc4vxp18g0";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "doc" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
propagatedBuildInputs = [ glib zlib libgpgerror ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://spruce.sourceforge.net/gmime/;
|
|
description = "A C/C++ library for manipulating MIME messages";
|
|
maintainers = [ stdenv.lib.maintainers.chaoflow ];
|
|
};
|
|
}
|