Gnome3: add rest-0.7.90
This commit is contained in:
parent
0657498c6f
commit
3a8aa93821
|
@ -0,0 +1,18 @@
|
|||
{ stdenv, fetchurl, pkgconfig, glib, libsoup }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "rest-0.7.90";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.acc.umu.se/pub/GNOME/core/3.10/3.10.2/sources/${name}.tar.xz";
|
||||
sha256 = "08n0cvz44l4b1gkmjryap3ysd0wcbbbdjbcar73nr52dmk52ls0x";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig glib libsoup ];
|
||||
|
||||
configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue