nixpkgs/pkgs/desktops/gnome-3/core/rest/default.nix

19 lines
509 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection }:
2014-01-11 13:21:01 +01:00
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 gobjectIntrospection];
2014-01-11 13:21:01 +01:00
configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt";
meta = with stdenv.lib; {
platforms = platforms.linux;
};
}