summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16/core/rest/default.nix
blob: d1bfee5c14a30c2dc23213a2dbe10ce98da48339 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobjectIntrospection }:

stdenv.mkDerivation rec {
  name = "rest-0.7.92";

  src = fetchurl {
    url = "mirror://gnome/sources/rest/0.7/${name}.tar.xz";
    sha256 = "07548c8785a3e743daf54a82b952ff5f32af94fee68997df4c83b00d52f9c0ec";
  };

  buildInputs = [ pkgconfig glib libsoup gobjectIntrospection];

  configureFlags = "--with-ca-certificates=/etc/ssl/certs/ca-bundle.crt";

  meta = with stdenv.lib; {
    platforms = platforms.linux;
    maintainers = [ maintainers.lethalman ];
  };
}