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

32 lines
915 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, glib, libsoup, gobject-introspection, gnome3 }:
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";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
2017-12-03 23:03:55 +00:00
sha256 = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9";
};
nativeBuildInputs = [ pkg-config gobject-introspection ];
2018-12-25 16:45:11 +00:00
buildInputs = [ glib libsoup ];
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" ];
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
};
};
meta = with lib; {
2018-12-25 16:45:11 +00:00
description = "Helper library for RESTful services";
homepage = "https://wiki.gnome.org/Projects/Librest";
2018-03-03 01:26:34 +00:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = teams.gnome.members;
};
}