1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/liboauth/default.nix
2014-01-21 14:11:19 +01:00

21 lines
492 B
Nix

{ fetchurl, stdenv, nss, openssl, pkgconfig }:
stdenv.mkDerivation rec {
name = "liboauth-1.0.1";
src = fetchurl {
url = "mirror://sourceforge/liboauth/${name}.tar.gz";
sha256 = "12wdwq09nba8dzzcgcpbzmgcjr141ky69pm78s15hyyvw4px71sh";
};
buildInputs = [ nss openssl ];
meta = with stdenv.lib; {
platforms = platforms.linux;
description = "C library implementing the OAuth secure authentication protocol";
homepage = http://liboauth.sourceforge.net/;
};
}