biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / X11 / arandr / default.nix
blobc0125fb710da8064729d0d04b30ed9771b71f850
1 { lib
2 , fetchurl
3 , python3Packages
4 , gobject-introspection
5 , gsettings-desktop-schemas
6 , gtk3
7 , wrapGAppsHook3
8 , xrandr
9 }:
11 let
12   inherit (python3Packages) buildPythonApplication docutils pygobject3;
14 buildPythonApplication rec {
15   pname = "arandr";
16   version = "0.1.11";
18   src = fetchurl {
19     url = "https://christian.amsuess.com/tools/arandr/files/${pname}-${version}.tar.gz";
20     hash = "sha256-5Mu+Npi7gSs5V3CHAXS+AJS7rrOREFqBH5X0LrGCrgI=";
21   };
23   preBuild = ''
24     rm -rf data/po/*
25   '';
27   # no tests
28   doCheck = false;
30   buildInputs = [ docutils gsettings-desktop-schemas gtk3 ];
31   nativeBuildInputs = [ gobject-introspection wrapGAppsHook3 ];
32   propagatedBuildInputs = [ xrandr pygobject3 ];
34   meta = with lib; {
35     homepage = "https://christian.amsuess.com/tools/arandr/";
36     description = "Simple visual front end for XRandR";
37     license = licenses.gpl3;
38     maintainers = with maintainers; [ gepbird ];
39     mainProgram = "arandr";
40   };