azure-storage-azcopy: 10.27.1 -> 10.28.0 (#377459)
[NixPkgs.git] / pkgs / by-name / wl / wlr-randr / package.nix
blob4064d5538bbfcda60e525f53168415ace4e5d6fe
2   lib,
3   stdenv,
4   fetchFromSourcehut,
5   meson,
6   ninja,
7   pkg-config,
8   wayland,
9   wayland-scanner,
12 stdenv.mkDerivation rec {
13   pname = "wlr-randr";
14   version = "0.4.1";
16   src = fetchFromSourcehut {
17     owner = "~emersion";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-2kWTVAi4hq2d9jQ6yBLVzm3x7n/oSvBdZ45WyjhXhc4=";
21   };
23   strictDeps = true;
24   nativeBuildInputs = [
25     meson
26     ninja
27     pkg-config
28     wayland-scanner
29   ];
30   buildInputs = [ wayland ];
31   depsBuildBuild = [
32     pkg-config
33   ];
35   meta = with lib; {
36     description = "Xrandr clone for wlroots compositors";
37     homepage = "https://git.sr.ht/~emersion/wlr-randr";
38     license = licenses.mit;
39     maintainers = with maintainers; [ ma27 ];
40     platforms = platforms.linux;
41     mainProgram = "wlr-randr";
42   };