Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
802 B
Nix
38 lines
802 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
kdePackages,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencloud-desktop-shell-integration-resources";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "opencloud-eu";
|
|
repo = "desktop-shell-integration-resources";
|
|
tag = "v${version}";
|
|
hash = "sha256-TqJanrAKD3aNQu5jL1Dt0bn84dYBNGImAKBGsAY2xeU=";
|
|
};
|
|
|
|
buildInputs = [
|
|
kdePackages.extra-cmake-modules
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = {
|
|
description = "Shared assets for OpenCloud desktop shell integrations";
|
|
homepage = "https://github.com/opencloud-eu/desktop-shell-integration-resources";
|
|
license = lib.licenses.gpl2Only;
|
|
maintainers = with lib.maintainers; [ k900 ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|