forgejo-lts: 7.0.10 -> 7.0.11
[NixPkgs.git] / pkgs / by-name / co / cosmic-protocols / package.nix
blobf4ba351d5c456ddfc98a807449301969d7565484
1 { lib
2 , fetchFromGitHub
3 , stdenv
4 , wayland-scanner
5 }:
7 stdenv.mkDerivation rec {
8   pname = "cosmic-protocols";
9   version = "0-unstable-2024-07-31";
11   src = fetchFromGitHub {
12     owner = "pop-os";
13     repo = pname;
14     rev = "de2fead49d6af3a221db153642e4d7c2235aafc4";
15     hash = "sha256-qgo8FMKo/uCbhUjfykRRN8KSavbyhZpu82M8npLcIPI=";
16   };
18   makeFlags = [ "PREFIX=${placeholder "out"}" ];
19   nativeBuildInputs = [ wayland-scanner ];
21   meta = with lib; {
22     homepage = "https://github.com/pop-os/cosmic-protocols";
23     description = "Additional wayland-protocols used by the COSMIC desktop environment";
24     license = [ licenses.mit licenses.gpl3Only ];
25     maintainers = with maintainers; [ nyabinary ];
26     platforms = platforms.linux;
27   };