bffbf4617a
Their keys are now not used directly. Instead, we go the standard route of mapping to the UUID in order to apply the rename procedure. This makes sure the manual override always does the correct thing, and also gives us more consistency overall.
45 lines
1,020 B
Nix
45 lines
1,020 B
Nix
{ lib, stdenv, substituteAll, fetchFromGitHub, taskwarrior, gettext, runtimeShell }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnome-shell-extension-taskwhisperer";
|
|
version = "16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cinatic";
|
|
repo = "taskwhisperer";
|
|
rev = "v${version}";
|
|
sha256 = "05w2dfpr5vrydb7ij4nd2gb7c31nxix3j48rb798r4jzl1rakyah";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
];
|
|
|
|
buildInputs = [
|
|
taskwarrior
|
|
];
|
|
|
|
passthru = {
|
|
extensionUuid = "taskwhisperer-extension@infinicode.de";
|
|
extensionPortalSlug = "taskwhisperer";
|
|
};
|
|
|
|
makeFlags = [
|
|
"INSTALLBASE=${placeholder "out"}/share/gnome-shell/extensions"
|
|
];
|
|
|
|
patches = [
|
|
(substituteAll {
|
|
src = ./fix-paths.patch;
|
|
task = "${taskwarrior}/bin/task";
|
|
shell = runtimeShell;
|
|
})
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "GNOME Shell TaskWarrior GUI";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ jonafato ];
|
|
homepage = "https://github.com/cinatic/taskwhisperer";
|
|
};
|
|
}
|