mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
Adding vmime
svn path=/nixpkgs/trunk/; revision=25783
This commit is contained in:
parent
9391f9819c
commit
47c7daa2af
19
pkgs/development/libraries/vmime/default.nix
Normal file
19
pkgs/development/libraries/vmime/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl, gsasl, gnutls, pkgconfig, zlib, libtasn1 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "vmime-0.9.1";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/vmime/libvmime-0.9.1.tar.bz2;
|
||||
sha256 = "1bninkznn07zhl7gc3jnigzvb0x1sclwqwgjy47ahzdwv5vcnriv";
|
||||
};
|
||||
|
||||
buildInputs = [ gsasl gnutls pkgconfig zlib libtasn1 ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.vmime.org/;
|
||||
description = "Free mail library for C++";
|
||||
license = "GPLv3";
|
||||
maintainers = with stdenv.lib.maintainers; [viric];
|
||||
platforms = with stdenv.lib.platforms; linux;
|
||||
};
|
||||
}
|
@ -4114,6 +4114,8 @@ let
|
||||
|
||||
vigra = callPackage ../development/libraries/vigra { };
|
||||
|
||||
vmime = callPackage ../development/libraries/vmime { };
|
||||
|
||||
vtk = callPackage ../development/libraries/vtk { };
|
||||
|
||||
vxl = callPackage ../development/libraries/vxl { };
|
||||
|
Loading…
Reference in New Issue
Block a user