mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +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.
51 lines
1.3 KiB
Nix
51 lines
1.3 KiB
Nix
{ stdenv, fetchurl, lib, file
|
|
, pkg-config, glib
|
|
, gtkVersion ? "3", gtk2, gtk3 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libindicator-gtk${gtkVersion}";
|
|
version = "12.10.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://launchpad.net/libindicator/${lib.versions.majorMinor version}/${version}/+download/libindicator-${version}.tar.gz";
|
|
sha256 = "b2d2e44c10313d5c9cd60db455d520f80b36dc39562df079a3f29495e8f9447f";
|
|
};
|
|
|
|
strictDeps = true;
|
|
|
|
nativeBuildInputs = [ pkg-config glib ];
|
|
|
|
buildInputs = [ (if gtkVersion == "2" then gtk2 else gtk3) ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace configure \
|
|
--replace 'LIBINDICATOR_LIBS+="$LIBM"' 'LIBINDICATOR_LIBS+=" $LIBM"'
|
|
for f in {build-aux/ltmain.sh,configure,m4/libtool.m4}; do
|
|
substituteInPlace $f\
|
|
--replace /usr/bin/file ${file}/bin/file
|
|
done
|
|
'';
|
|
|
|
configureFlags = [
|
|
"CFLAGS=-Wno-error"
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
"--with-gtk=${gtkVersion}"
|
|
];
|
|
|
|
installFlags = [
|
|
"sysconfdir=\${out}/etc"
|
|
"localstatedir=\${TMPDIR}"
|
|
];
|
|
|
|
doCheck = false; # fails 8 out of 8 tests
|
|
|
|
meta = with lib; {
|
|
description = "Set of symbols and convenience functions for Ayatana indicators";
|
|
homepage = "https://launchpad.net/libindicator";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.msteen ];
|
|
};
|
|
}
|