mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-21 04:13:12 +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.
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{ stdenv
|
|
, lib
|
|
, autoreconfHook
|
|
, fetchbzr
|
|
, fetchpatch
|
|
, pkg-config
|
|
, gtk3
|
|
, glib
|
|
, file
|
|
, gobject-introspection
|
|
, json-glib
|
|
, libsoup
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "timezonemap";
|
|
version = "0.4.5.1";
|
|
|
|
src = fetchbzr {
|
|
url = "lp:timezonemap";
|
|
rev = "58";
|
|
sha256 = "sha256-wCJXwgnN+aZVerjQCm8oT3xIcwmc4ArcEoCh9pMrt+E=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix crashes when running in GLib 2.76
|
|
# https://bugs.launchpad.net/ubuntu/+source/libtimezonemap/+bug/2012116
|
|
(fetchpatch {
|
|
url = "https://git.launchpad.net/ubuntu/+source/libtimezonemap/plain/debian/patches/timezone-map-Never-try-to-access-to-free-d-or-null-values.patch?id=88f72f724e63df061204f6818c9a1e7d8c003e29";
|
|
sha256 = "sha256-M5eR0uaqpJOeW2Ya1Al+3ZciXukzHpnjJTMVvdO0dPE=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
autoreconfHook
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
glib
|
|
json-glib
|
|
libsoup
|
|
];
|
|
|
|
configureFlags = [
|
|
"CFLAGS=-Wno-error"
|
|
"--sysconfdir=/etc"
|
|
"--localstatedir=/var"
|
|
];
|
|
|
|
installFlags = [
|
|
"sysconfdir=${placeholder "out"}/etc"
|
|
"localstatedir=\${TMPDIR}"
|
|
];
|
|
|
|
preConfigure = ''
|
|
for f in {configure,m4/libtool.m4}; do
|
|
substituteInPlace $f\
|
|
--replace /usr/bin/file ${file}/bin/file
|
|
done
|
|
'';
|
|
|
|
postPatch = ''
|
|
sed "s|/usr/share/libtimezonemap|$out/share/libtimezonemap|g" -i ./src/tz.h
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://launchpad.net/timezonemap";
|
|
description = "GTK+3 Timezone Map Widget";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.mkg20001 ];
|
|
};
|
|
}
|