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

22 lines
552 B
Nix
Raw Normal View History

2014-01-20 15:38:39 +00:00
{ fetchurl, stdenv, nss, openssl, pkgconfig }:
stdenv.mkDerivation rec {
2014-04-03 05:52:32 +01:00
name = "liboauth-1.0.2";
2014-01-20 15:38:39 +00:00
src = fetchurl {
url = "mirror://sourceforge/liboauth/${name}.tar.gz";
2014-04-03 05:52:32 +01:00
sha256 = "1qs58yzydw20dmzvx22i541w641kwd6ja80s9na1az32n1krh6zv";
2014-01-20 15:38:39 +00:00
};
buildInputs = [ nss openssl ];
meta = with stdenv.lib; {
platforms = platforms.linux;
description = "C library implementing the OAuth secure authentication protocol";
homepage = http://liboauth.sourceforge.net/;
2014-04-03 05:52:32 +01:00
repositories.git = https://github.com/x42/liboauth.git;
2014-01-20 15:38:39 +00:00
};
}