vifm: 0.13 -> 0.14 (#380559)
[NixPkgs.git] / pkgs / by-name / co / cosmic-protocols / package.nix
blobab312107546a0d6f84daaf575b5c3aed194e5581
2   lib,
3   fetchFromGitHub,
4   stdenv,
5   wayland-scanner,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "cosmic-protocols";
10   version = "0-unstable-2024-07-31";
12   src = fetchFromGitHub {
13     owner = "pop-os";
14     repo = pname;
15     rev = "de2fead49d6af3a221db153642e4d7c2235aafc4";
16     hash = "sha256-qgo8FMKo/uCbhUjfykRRN8KSavbyhZpu82M8npLcIPI=";
17   };
19   makeFlags = [ "PREFIX=${placeholder "out"}" ];
20   nativeBuildInputs = [ wayland-scanner ];
22   meta = with lib; {
23     homepage = "https://github.com/pop-os/cosmic-protocols";
24     description = "Additional wayland-protocols used by the COSMIC desktop environment";
25     license = [
26       licenses.mit
27       licenses.gpl3Only
28     ];
29     maintainers = with maintainers; [ nyabinary ];
30     platforms = platforms.linux;
31   };