add gnome3.libgdata and liboauth

This commit is contained in:
Domen Kožar
2014-01-21 14:11:19 +01:00
parent 668310a2b5
commit dbfaeaf0df
5 changed files with 51 additions and 53 deletions
@@ -0,0 +1,20 @@
{ 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/;
};
}