mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-29 08:14:19 +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.
76 lines
2.2 KiB
Nix
76 lines
2.2 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, systemd
|
|
, xrandr
|
|
, installShellFiles
|
|
, desktop-file-utils
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "autorandr";
|
|
version = "1.15";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "phillipberndt";
|
|
repo = "autorandr";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-8FMfy3GCN4z/TnfefU2DbKqV3W35I29/SuGGqeOrjNg";
|
|
};
|
|
|
|
nativeBuildInputs = [ installShellFiles desktop-file-utils ];
|
|
propagatedBuildInputs = with python3.pkgs; [ packaging ];
|
|
|
|
buildPhase = ''
|
|
substituteInPlace autorandr.py \
|
|
--replace 'os.popen("xrandr' 'os.popen("${xrandr}/bin/xrandr' \
|
|
--replace '["xrandr"]' '["${xrandr}/bin/xrandr"]'
|
|
'';
|
|
|
|
patches = [ ./0001-don-t-use-sys.executable.patch ];
|
|
|
|
outputs = [ "out" "man" ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
make install TARGETS='autorandr' PREFIX=$out
|
|
|
|
# zsh completions exist but currently have no make target, use
|
|
# installShellCompletions for both
|
|
# see https://github.com/phillipberndt/autorandr/issues/197
|
|
installShellCompletion --cmd autorandr \
|
|
--bash contrib/bash_completion/autorandr \
|
|
--zsh contrib/zsh_completion/_autorandr \
|
|
--fish contrib/fish_completion/autorandr.fish
|
|
|
|
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
|
|
'';
|
|
|
|
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 ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "autorandr";
|
|
};
|
|
}
|