depot/third_party/nixpkgs/pkgs/development/libraries/plasma-wayland-protocols/default.nix
Default email 14910f5943 Project import generated by Copybara.
GitOrigin-RevId: 5aaed40d22f0d9376330b6fa413223435ad6fee5
2022-01-13 15:06:32 -05:00

27 lines
574 B
Nix

{ mkDerivation
, fetchurl
, lib
, extra-cmake-modules
, qtbase
}:
mkDerivation rec {
pname = "plasma-wayland-protocols";
version = "1.5.0";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${pname}-${version}.tar.xz";
sha256 = "sha256-zMn8INehMO2/sjPDOxMldArAGyZAqjelxUTtv7oYqDM=";
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtbase ];
meta = {
description = "Plasma Wayland Protocols";
license = lib.licenses.lgpl21Plus;
platforms = qtbase.meta.platforms;
maintainers = [ lib.maintainers.ttuegel ];
};
}