nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 cmake,
6 kdePackages,
7}:
8
9stdenv.mkDerivation rec {
10 pname = "opencloud-desktop-shell-integration-resources";
11 version = "1.0.0";
12
13 src = fetchFromGitHub {
14 owner = "opencloud-eu";
15 repo = "desktop-shell-integration-resources";
16 tag = "v${version}";
17 hash = "sha256-TqJanrAKD3aNQu5jL1Dt0bn84dYBNGImAKBGsAY2xeU=";
18 };
19
20 buildInputs = [
21 kdePackages.extra-cmake-modules
22 ];
23
24 nativeBuildInputs = [
25 cmake
26 ];
27
28 dontWrapQtApps = true;
29
30 meta = {
31 description = "Shared assets for OpenCloud desktop shell integrations";
32 homepage = "https://github.com/opencloud-eu/desktop-shell-integration-resources";
33 license = lib.licenses.gpl2Only;
34 maintainers = with lib.maintainers; [ k900 ];
35 platforms = lib.platforms.all;
36 };
37}