summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2022-09-21 11:33:20 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2022-09-21 11:33:20 +0200
commit9a448bdf92cf40df4de1762664006fcd94f832a5 (patch)
treed1c104d2027836a6755b78cda3df72db2af9f0bb
parent071a9fc320fae79a4613cc089992e5b55dbf307d (diff)
downloadnixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar.gz
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar.bz2
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar.lz
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar.xz
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.tar.zst
nixpkgs-9a448bdf92cf40df4de1762664006fcd94f832a5.zip
autorandr: fix build dist issue
The build uses a custom build and install phase and should therefore not
use the hooks that are provided by default.
-rw-r--r--pkgs/tools/misc/autorandr/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/tools/misc/autorandr/default.nix b/pkgs/tools/misc/autorandr/default.nix
index 7a9a30756ff..eb1ce13f310 100644
--- a/pkgs/tools/misc/autorandr/default.nix
+++ b/pkgs/tools/misc/autorandr/default.nix
@@ -9,6 +9,7 @@
 python3.pkgs.buildPythonApplication rec {
   pname = "autorandr";
   version = "1.12.1";
+  format = "other";
 
   nativeBuildInputs = [ installShellFiles ];
   propagatedBuildInputs = [ python3Packages.packaging ];