kdePackages.kup: init at 0.10.0

This commit is contained in:
Philipp Woelfel 2024-07-10 16:02:14 -06:00
parent b8f202e91a
commit 035f0e6936
2 changed files with 24 additions and 0 deletions

View File

@ -68,6 +68,7 @@
kio-fuse = self.callPackage ./misc/kio-fuse {};
ktextaddons = self.callPackage ./misc/ktextaddons {};
kunifiedpush = self.callPackage ./misc/kunifiedpush {};
kup = self.callPackage ./misc/kup {};
kweathercore = self.callPackage ./misc/kweathercore {};
marknote = self.callPackage ./misc/marknote {};
mpvqt = self.callPackage ./misc/mpvqt {};

View File

@ -0,0 +1,23 @@
{ lib
, mkKdeDerivation
, fetchFromGitLab
, libgit2
}:
mkKdeDerivation rec {
pname = "kup";
version = "0.10.0";
src = fetchFromGitLab {
domain = "invent.kde.org";
owner = "system";
repo = "kup";
rev = "${pname}-${version}";
hash = "sha256-G/GXmcQI1OBnCE7saPHeHDAMeL2WR6nVttMlKV2e01I=";
};
extraBuildInputs = [ libgit2 ];
meta = with lib; {
license = licenses.gpl2Plus;
maintainers = [ maintainers.pwoelfel ];
};
}