mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
librest: enable on Darwin
Not sure if it will work since the certificates file is not present on MacOS AFAICT but it is needed for GTK 4 so 🤷♀️.
Also clean up the expression and correct license.
This commit is contained in:
parent
11f0852a64
commit
587953e2db
@ -1,4 +1,12 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, glib, libsoup, gobject-introspection, gnome3 }:
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, pkg-config
|
||||
, glib
|
||||
, libsoup
|
||||
, gobject-introspection
|
||||
, gnome3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rest";
|
||||
@ -9,10 +17,20 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0513aad38e5d3cedd4ae3c551634e3be1b9baaa79775e53b2dba9456f15b01c9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config gobject-introspection ];
|
||||
buildInputs = [ glib libsoup ];
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
gobject-introspection
|
||||
];
|
||||
|
||||
configureFlags = [ "--with-ca-certificates=/etc/ssl/certs/ca-certificates.crt" ];
|
||||
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"
|
||||
];
|
||||
|
||||
passthru = {
|
||||
updateScript = gnome3.updateScript {
|
||||
@ -25,8 +43,8 @@ stdenv.mkDerivation rec {
|
||||
meta = with lib; {
|
||||
description = "Helper library for RESTful services";
|
||||
homepage = "https://wiki.gnome.org/Projects/Librest";
|
||||
license = licenses.lgpl21;
|
||||
platforms = platforms.linux;
|
||||
license = licenses.lgpl21Only;
|
||||
platforms = platforms.unix;
|
||||
maintainers = teams.gnome.members;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user