nixpkgs/pkgs/applications/misc/xrandr-invert-colors/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

27 lines
760 B
Nix

{ fetchurl, stdenv, libXrandr}:
stdenv.mkDerivation rec {
version = "0.01";
pname = "xrandr-invert-colors";
src = fetchurl {
url = "https://github.com/zoltanp/xrandr-invert-colors/archive/v${version}.tar.gz";
sha256 = "1z4hxn56rlflvqanb8ncqa1xqawnda85b1b37w6r2iqs8rw52d75";
};
buildInputs = [ libXrandr ];
installPhase = ''
mkdir -p $out/bin
mv xrandr-invert-colors.bin xrandr-invert-colors
install xrandr-invert-colors $out/bin
'';
meta = with stdenv.lib; {
description = "Inverts the colors of your screen";
license = stdenv.lib.licenses.gpl3Plus;
homepage = https://github.com/zoltanp/xrandr-invert-colors;
maintainers = [stdenv.lib.maintainers.magnetophon ];
platforms = platforms.linux;
};
}