567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
26 lines
479 B
Nix
26 lines
479 B
Nix
{
|
|
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 = {
|
|
license = lib.licenses.gpl2Plus;
|
|
maintainers = [ lib.maintainers.pwoelfel ];
|
|
teams = [ ];
|
|
};
|
|
}
|