mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-22 05:33:23 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
106 lines
2.0 KiB
Nix
106 lines
2.0 KiB
Nix
{
|
|
fetchFromGitLab,
|
|
lib,
|
|
stdenv,
|
|
autoreconfHook,
|
|
gtk-doc,
|
|
pkg-config,
|
|
intltool,
|
|
gettext,
|
|
glib,
|
|
libxml2,
|
|
zlib,
|
|
bzip2,
|
|
perl,
|
|
gdk-pixbuf,
|
|
libiconv,
|
|
libintl,
|
|
gnome,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libgsf";
|
|
version = "1.14.53";
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
];
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
owner = "GNOME";
|
|
repo = "libgsf";
|
|
rev = "LIBGSF_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
|
hash = "sha256-vC/6QEoV6FvFxQ0YlMkBbTmAtqbkvgZf+9BU8epi8yo=";
|
|
};
|
|
|
|
postPatch = ''
|
|
# Fix cross-compilation
|
|
substituteInPlace configure.ac \
|
|
--replace "AC_PATH_PROG(PKG_CONFIG, pkg-config, no)" \
|
|
"PKG_PROG_PKG_CONFIG"
|
|
'';
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
gtk-doc
|
|
pkg-config
|
|
intltool
|
|
libintl
|
|
];
|
|
|
|
buildInputs = [
|
|
gettext
|
|
bzip2
|
|
zlib
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
perl
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libxml2
|
|
glib
|
|
gdk-pixbuf
|
|
libiconv
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
preCheck = ''
|
|
patchShebangs ./tests/
|
|
'';
|
|
|
|
# checking pkg-config is at least version 0.9.0... ./configure: line 15213: no: command not found
|
|
# configure: error: in `/build/libgsf-1.14.50':
|
|
# configure: error: The pkg-config script could not be found or is too old. Make sure it
|
|
# is in your PATH or set the PKG_CONFIG environment variable to the full
|
|
preConfigure = ''
|
|
export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = gnome.updateScript {
|
|
packageName = pname;
|
|
versionPolicy = "odd-unstable";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "GNOME's Structured File Library";
|
|
homepage = "https://www.gnome.org/projects/libgsf";
|
|
license = licenses.lgpl21Only;
|
|
maintainers = with maintainers; [ lovek323 ];
|
|
platforms = lib.platforms.unix;
|
|
|
|
longDescription = ''
|
|
Libgsf aims to provide an efficient extensible I/O abstraction for
|
|
dealing with different structured file formats.
|
|
'';
|
|
};
|
|
}
|