2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, glib, libsoup, gobject-introspection, gnome3 }:
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-12-25 16:45:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2018-03-03 01:26:34 +00:00
|
|
|
pname = "rest";
|
|
|
|
version = "0.8.1";
|
2016-09-18 20:35:23 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
2017-12-03 23:03:55 +00:00
|
|
|
sha256 = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9";
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ pkg-config gobject-introspection ];
|
2018-12-25 16:45:11 +00:00
|
|
|
buildInputs = [ glib libsoup ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" ];
|
2016-09-18 20:35:23 +01:00
|
|
|
|
2018-03-03 01:26:34 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
2018-12-25 16:45:11 +00:00
|
|
|
attrPath = "librest";
|
2018-03-03 01:26:34 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-12-25 16:45:11 +00:00
|
|
|
description = "Helper library for RESTful services";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://wiki.gnome.org/Projects/Librest";
|
2018-03-03 01:26:34 +00:00
|
|
|
license = licenses.lgpl21;
|
2016-09-18 20:35:23 +01:00
|
|
|
platforms = platforms.linux;
|
2020-04-01 13:40:51 +01:00
|
|
|
maintainers = teams.gnome.members;
|
2016-09-18 20:35:23 +01:00
|
|
|
};
|
|
|
|
}
|