4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
72 lines
1.4 KiB
Nix
72 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, fetchurl
|
|
, pkgconfig
|
|
, libxslt
|
|
, docbook_xsl
|
|
, udev
|
|
, libgudev
|
|
, libusb1
|
|
, glib
|
|
, gobject-introspection
|
|
, gettext
|
|
, systemd
|
|
, useIMobileDevice ? true
|
|
, libimobiledevice
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "upower";
|
|
version = "0.99.11";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/upower/upower/uploads/93cfe7c8d66ed486001c4f3f55399b7a/upower-0.99.11.tar.xz";
|
|
sha256 = "1vxxvmz2cxb1qy6ibszaz5bskqdy9nd9fxspj9fv3gfmrjzzzdb4";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
docbook_xsl
|
|
gettext
|
|
gobject-introspection
|
|
libxslt
|
|
pkgconfig
|
|
];
|
|
|
|
buildInputs = [
|
|
libgudev
|
|
libusb1
|
|
udev
|
|
systemd
|
|
]
|
|
++ stdenv.lib.optional useIMobileDevice libimobiledevice
|
|
;
|
|
|
|
propagatedBuildInputs = [
|
|
glib
|
|
];
|
|
|
|
configureFlags = [
|
|
"--localstatedir=/var"
|
|
"--with-backend=linux"
|
|
"--with-systemdsystemunitdir=${placeholder "out"}/etc/systemd/system"
|
|
"--with-systemdutildir=${placeholder "out"}/lib/systemd"
|
|
"--with-udevrulesdir=${placeholder "out"}/lib/udev/rules.d"
|
|
"--sysconfdir=/etc"
|
|
];
|
|
|
|
doCheck = false; # fails with "env: './linux/integration-test': No such file or directory"
|
|
|
|
installFlags = [
|
|
"historydir=$(TMPDIR)/foo"
|
|
"sysconfdir=${placeholder "out"}/etc"
|
|
];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://upower.freedesktop.org/";
|
|
description = "A D-Bus service for power management";
|
|
platforms = platforms.linux;
|
|
license = licenses.gpl2Plus;
|
|
};
|
|
}
|