nixpkgs/pkgs/development/libraries/libasr/default.nix

22 lines
581 B
Nix
Raw Normal View History

2015-02-13 03:24:05 +03:00
{ stdenv, fetchurl, libevent, openssl }:
stdenv.mkDerivation rec {
name = "libasr-${version}";
2015-06-20 15:45:26 +03:00
version= "1.0.2";
2015-02-13 03:24:05 +03:00
src = fetchurl {
url = "https://www.opensmtpd.org/archives/${name}.tar.gz";
2015-06-20 15:45:26 +03:00
sha256 = "0d4blm0kzdhb75fq8sbcpvkc25lv5dbjaxa2ldniaf39633d3xd6";
2015-02-13 03:24:05 +03:00
};
buildInputs = [ libevent openssl ];
meta = with stdenv.lib; {
homepage = https://github.com/OpenSMTPD/libasr;
2015-02-13 16:29:11 +03:00
description = "Free, simple and portable asynchronous resolver library";
2015-02-13 03:24:05 +03:00
license = licenses.isc;
maintainers = [ maintainers.koral ];
platforms = platforms.unix;
2015-02-13 03:24:05 +03:00
};
}