mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 06:55:10 +00:00
40 lines
962 B
Nix
40 lines
962 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
kdePackages,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "kara";
|
|
version = "0.7.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dhruv8sh";
|
|
repo = "kara";
|
|
rev = "refs/tags/v${finalAttrs.version}";
|
|
hash = "sha256-an0tA1YQU/wpaY4y6lQfOFiUYm6aLmVTC1M5sukARVA=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/plasma/plasmoids/org.dhruv8sh.kara
|
|
cp metadata.json $out/share/plasma/plasmoids/org.dhruv8sh.kara
|
|
cp -r contents $out/share/plasma/plasmoids/org.dhruv8sh.kara
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "KDE Plasma Applet for use as a desktop/workspace pager";
|
|
homepage = "https://github.com/dhruv8sh/kara";
|
|
license = lib.licenses.gpl3Plus;
|
|
maintainers = with lib.maintainers; [ HeitorAugustoLN ];
|
|
inherit (kdePackages.kwindowsystem.meta) platforms;
|
|
};
|
|
})
|