mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Gnome3: add rest-0.7.90
This commit is contained in:
parent
0657498c6f
commit
3a8aa93821
18
pkgs/desktops/gnome-3/core/rest/default.nix
Normal file
18
pkgs/desktops/gnome-3/core/rest/default.nix
Normal file
@ -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
Block a user