biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / misc / xrandr-invert-colors / default.nix
blob6fd521f3cc5cf427678f7f4f1ea422fcd37c5c15
1 { lib, stdenv, fetchFromGitHub, libXrandr}:
3 stdenv.mkDerivation rec {
4   pname = "xrandr-invert-colors";
5   version = "0.02";
7   src = fetchFromGitHub {
8     owner = "zoltanp";
9     repo = "xrandr-invert-colors";
10     rev = "v${version}";
11     sha256 = "sha256-MIbHNJFDQsvjPUbperTKKbHY5GSgItvRyV5OsfpzYT4=";
12   };
14   buildInputs = [ libXrandr ];
16   installPhase = ''
17     mkdir -p $out/bin
18     mv xrandr-invert-colors.bin xrandr-invert-colors
19     install xrandr-invert-colors $out/bin
20   '';
22   meta = with lib; {
23     description = "Inverts the colors of your screen";
24     license = lib.licenses.gpl3Plus;
25     homepage = "https://github.com/zoltanp/xrandr-invert-colors";
26     maintainers = [lib.maintainers.magnetophon ];
27     platforms = platforms.linux;
28     mainProgram = "xrandr-invert-colors";
29   };