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
67 lines
1.9 KiB
Nix
67 lines
1.9 KiB
Nix
{ lib, stdenv
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, systemd
|
|
, xrandr }:
|
|
|
|
let
|
|
python = python3Packages.python;
|
|
version = "1.11";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "autorandr";
|
|
inherit version;
|
|
|
|
buildInputs = [ python ];
|
|
|
|
# no wrapper, as autorandr --batch does os.environ.clear()
|
|
buildPhase = ''
|
|
substituteInPlace autorandr.py \
|
|
--replace 'os.popen("xrandr' 'os.popen("${xrandr}/bin/xrandr' \
|
|
--replace '["xrandr"]' '["${xrandr}/bin/xrandr"]'
|
|
'';
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make install TARGETS='autorandr' PREFIX=$out
|
|
|
|
make install TARGETS='bash_completion' DESTDIR=$out/share/bash-completion/completions
|
|
|
|
make install TARGETS='autostart_config' PREFIX=$out DESTDIR=$out
|
|
|
|
make install TARGETS='manpage' PREFIX=$man
|
|
|
|
${if systemd != null then ''
|
|
make install TARGETS='systemd udev' PREFIX=$out DESTDIR=$out \
|
|
SYSTEMD_UNIT_DIR=/lib/systemd/system \
|
|
UDEV_RULES_DIR=/etc/udev/rules.d
|
|
substituteInPlace $out/etc/udev/rules.d/40-monitor-hotplug.rules \
|
|
--replace /bin/systemctl "/run/current-system/systemd/bin/systemctl"
|
|
'' else ''
|
|
make install TARGETS='pmutils' DESTDIR=$out \
|
|
PM_SLEEPHOOKS_DIR=/lib/pm-utils/sleep.d
|
|
make install TARGETS='udev' PREFIX=$out DESTDIR=$out \
|
|
UDEV_RULES_DIR=/etc/udev/rules.d
|
|
''}
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillipberndt";
|
|
repo = "autorandr";
|
|
rev = version;
|
|
sha256 = "0rmnqk2bi6bbd2if1rll37mlzlqxzmnazfffdhcpzskxwyaj4yn5";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/phillipberndt/autorandr/";
|
|
description = "Automatically select a display configuration based on connected devices";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ coroa globin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|