mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
139 lines
3.3 KiB
Nix
139 lines
3.3 KiB
Nix
{ stdenv
|
||
, lib
|
||
, fetchurl
|
||
, fetchpatch2
|
||
, glib
|
||
, meson
|
||
, ninja
|
||
, pkg-config
|
||
, gettext
|
||
, libxslt
|
||
, python3
|
||
, docbook-xsl-nons
|
||
, docbook_xml_dtd_42
|
||
, libgcrypt
|
||
, gobject-introspection
|
||
, buildPackages
|
||
, withIntrospection ? lib.meta.availableOn stdenv.hostPlatform gobject-introspection && stdenv.hostPlatform.emulatorAvailable buildPackages
|
||
, vala
|
||
, gi-docgen
|
||
, gnome
|
||
, gjs
|
||
, libintl
|
||
, dbus
|
||
}:
|
||
|
||
stdenv.mkDerivation rec {
|
||
pname = "libsecret";
|
||
version = "0.21.4";
|
||
|
||
outputs = [ "out" "dev" ] ++ lib.optional withIntrospection "devdoc";
|
||
|
||
src = fetchurl {
|
||
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||
hash = "sha256-Fj0I14O+bUq5qXnOtaT+y8HZZg08NBaMWBMBzVORKyA=";
|
||
};
|
||
|
||
patches = [
|
||
# https://gitlab.gnome.org/GNOME/libsecret/-/merge_requests/141
|
||
(fetchpatch2 {
|
||
url = "https://gitlab.gnome.org/GNOME/libsecret/-/commit/208989323211c756dff690115e5cbde5ef7491ce.patch";
|
||
hash = "sha256-DtRbqyyoMttEYf6B16m9O72Yjurv6rpbnqH7AlrAU4k=";
|
||
})
|
||
];
|
||
|
||
depsBuildBuild = [
|
||
pkg-config
|
||
];
|
||
|
||
nativeBuildInputs = [
|
||
meson
|
||
ninja
|
||
pkg-config
|
||
gettext
|
||
libxslt # for xsltproc for building man pages
|
||
docbook-xsl-nons
|
||
docbook_xml_dtd_42
|
||
libintl
|
||
vala
|
||
glib
|
||
] ++ lib.optionals withIntrospection [
|
||
gi-docgen
|
||
gobject-introspection
|
||
];
|
||
|
||
buildInputs = [
|
||
libgcrypt
|
||
];
|
||
|
||
propagatedBuildInputs = [
|
||
glib
|
||
];
|
||
|
||
nativeCheckInputs = [
|
||
python3
|
||
python3.pkgs.dbus-python
|
||
python3.pkgs.pygobject3
|
||
dbus
|
||
gjs
|
||
];
|
||
|
||
mesonFlags = [
|
||
(lib.mesonBool "introspection" withIntrospection)
|
||
(lib.mesonBool "gtk_doc" withIntrospection)
|
||
];
|
||
|
||
doCheck = stdenv.hostPlatform.isLinux && withIntrospection;
|
||
separateDebugInfo = true;
|
||
|
||
postPatch = ''
|
||
patchShebangs ./tool/test-*.sh
|
||
'';
|
||
|
||
preCheck = ''
|
||
# Our gobject-introspection patches make the shared library paths absolute
|
||
# in the GIR files. When running tests, the library is not yet installed,
|
||
# though, so we need to replace the absolute path with a local one during build.
|
||
# We are using a symlink that will be overwitten during installation.
|
||
mkdir -p $out/lib $out/lib
|
||
ln -s "$PWD/libsecret/libmock-service.so" "$out/lib/libmock-service.so"
|
||
ln -s "$PWD/libsecret/libsecret-1.so.0" "$out/lib/libsecret-1.so.0"
|
||
'';
|
||
|
||
checkPhase = ''
|
||
runHook preCheck
|
||
|
||
dbus-run-session \
|
||
--config-file=${dbus}/share/dbus-1/session.conf \
|
||
meson test --print-errorlogs --timeout-multiplier 0
|
||
|
||
runHook postCheck
|
||
'';
|
||
|
||
postCheck = ''
|
||
# This is test-only so it won’t be overwritten during installation.
|
||
rm "$out/lib/libmock-service.so"
|
||
'';
|
||
|
||
postFixup = ''
|
||
# Cannot be in postInstall, otherwise _multioutDocs hook in preFixup will move right back.
|
||
moveToOutput "share/doc" "$devdoc"
|
||
'';
|
||
|
||
passthru = {
|
||
updateScript = gnome.updateScript {
|
||
packageName = pname;
|
||
# Does not seem to use the odd-unstable policy: https://gitlab.gnome.org/GNOME/libsecret/issues/30
|
||
versionPolicy = "none";
|
||
};
|
||
};
|
||
|
||
meta = {
|
||
description = "Library for storing and retrieving passwords and other secrets";
|
||
homepage = "https://gitlab.gnome.org/GNOME/libsecret";
|
||
license = lib.licenses.lgpl21Plus;
|
||
mainProgram = "secret-tool";
|
||
inherit (glib.meta) platforms maintainers;
|
||
};
|
||
}
|