aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/librest
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-12-25 17:45:11 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-12-25 17:47:52 +0100
commit0f0179c2fa6ac404d2f54f159cd43716b22e5b07 (patch)
tree51bc39574863e554b7b8923f76974c46ee753bc7 /pkgs/development/libraries/librest
parent3ca8d0f814cd752189256a98724e755f1266c423 (diff)
librest: rename from gnome3.rest
Diffstat (limited to 'pkgs/development/libraries/librest')
-rw-r--r--pkgs/development/libraries/librest/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/pkgs/development/libraries/librest/default.nix b/pkgs/development/libraries/librest/default.nix
new file mode 100644
index 000000000000..e70ac9a53626
--- /dev/null
+++ b/pkgs/development/libraries/librest/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, fetchurl, pkgconfig, glib, libsoup, gobject-introspection, gnome3 }:
+
+stdenv.mkDerivation rec {
+ pname = "rest";
+ version = "0.8.1";
+
+ src = fetchurl {
+ url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
+ sha256 = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9";
+ };
+
+ nativeBuildInputs = [ pkgconfig gobject-introspection ];
+ buildInputs = [ glib libsoup ];
+
+ configureFlags = [ "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" ];
+
+ passthru = {
+ updateScript = gnome3.updateScript {
+ packageName = pname;
+ attrPath = "librest";
+ };
+ };
+
+ meta = with stdenv.lib; {
+ description = "Helper library for RESTful services";
+ homepage = https://wiki.gnome.org/Projects/Librest;
+ license = licenses.lgpl21;
+ platforms = platforms.linux;
+ maintainers = gnome3.maintainers;
+ };
+}