nixpkgs/pkgs/development/libraries/librest/default.nix

51 lines
1 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, pkg-config
, glib
, libsoup
, gobject-introspection
, gnome
}:
2018-12-25 17:45:11 +01:00
stdenv.mkDerivation rec {
2018-03-03 02:26:34 +01:00
pname = "rest";
version = "0.8.1";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2017-12-04 00:03:55 +01:00
sha256 = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9";
};
nativeBuildInputs = [
pkg-config
gobject-introspection
];
buildInputs = [
glib
libsoup
];
configureFlags = [
# Remove when https://gitlab.gnome.org/GNOME/librest/merge_requests/2 is merged.
"--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt"
];
2018-03-03 02:26:34 +01:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 02:26:34 +01:00
packageName = pname;
2018-12-25 17:45:11 +01:00
attrPath = "librest";
versionPolicy = "odd-unstable";
2018-03-03 02:26:34 +01:00
};
};
meta = with lib; {
2018-12-25 17:45:11 +01:00
description = "Helper library for RESTful services";
homepage = "https://wiki.gnome.org/Projects/Librest";
license = licenses.lgpl21Only;
platforms = platforms.unix;
maintainers = teams.gnome.members;
};
}