From 3bc7dfdf22c643b531acfbce4b0ad6b46a5bc796 Mon Sep 17 00:00:00 2001 From: koral Date: Fri, 13 Feb 2015 01:24:05 +0100 Subject: opensmtpd: 5.4.2p1 -> 5.4.4p1 --- pkgs/development/libraries/libasr/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pkgs/development/libraries/libasr/default.nix (limited to 'pkgs/development/libraries/libasr') diff --git a/pkgs/development/libraries/libasr/default.nix b/pkgs/development/libraries/libasr/default.nix new file mode 100644 index 00000000000..f4c9cc8c5e0 --- /dev/null +++ b/pkgs/development/libraries/libasr/default.nix @@ -0,0 +1,20 @@ +{ stdenv, fetchurl, libevent, openssl }: + +stdenv.mkDerivation rec { + name = "libasr-${version}"; + version= "1.0.1"; + + src = fetchurl { + url = "https://www.opensmtpd.org/archives/${name}.tar.gz"; + sha256 = "10h1c9b58msbggns8k2m0857zmbldb0x8ghk3aay88yn2bip2916"; + }; + + buildInputs = [ libevent openssl ]; + + meta = with stdenv.lib; { + homepage = https://github.com/OpenSMTPD/libasr; + description = "Free, simple and portable asynchronous resolver library."; + license = licenses.isc; + maintainers = [ maintainers.koral ]; + }; +} -- cgit 1.4.1