python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / wayland / wl-gammactl / default.nix
blob3aae67b47359d47c13de567afea8558600720be7
1 { lib, stdenv, fetchFromGitHub
2 , meson, pkg-config, ninja
3 , wayland, wayland-scanner, wlroots, wlr-protocols, gtk3, glib
4 }:
6 stdenv.mkDerivation rec {
7   pname = "wl-gammactl";
8   version = "unstable-2021-09-13";
10   src = fetchFromGitHub {
11     owner = "mischw";
12     repo = pname;
13     rev = "e2385950d97a3baf1b6e2f064dd419ccec179586";
14     sha256 = "8iMJK4O/sNIGPOBZQEfK47K6OjT6sxYFe19O2r/VSr8=";
15   };
17   strictDeps = true;
18   nativeBuildInputs = [ meson pkg-config ninja glib wayland-scanner ];
19   buildInputs = [ wayland wlroots gtk3 ];
21   postUnpack = ''
22     rmdir source/wlr-protocols
23     ln -s ${wlr-protocols}/share/wlr-protocols source
24   '';
26   postPatch = ''
27     substituteInPlace meson.build --replace "git = find_program('git')" "git = 'false'"
28   '';
30   meta = with lib; {
31     description = "Contrast, brightness, and gamma adjustments for Wayland";
32     longDescription = ''
33       Small GTK GUI application to set contrast, brightness, and gamma for wayland compositors which
34       support the wlr-gamma-control protocol extension.
35     '';
36     homepage = "https://github.com/mischw/wl-gammactl";
37     license = licenses.mit;
38     platforms = platforms.linux;
39     maintainers = with maintainers; [ lodi ];
40   };