14 stdenv.mkDerivation (finalAttrs: {
15 pname = "progress-tracker";
18 src = fetchFromGitHub {
19 owner = "smolBlackCat";
20 repo = "progress-tracker";
21 rev = "v${finalAttrs.version}";
22 hash = "sha256-uUw3+BJWRoCT1VH27SZBEBRsEbbpaP4IahKonfSOyeM=";
40 substituteInPlace src/CMakeLists.txt \
41 --replace-fail "/usr/bin/" "${placeholder "out"}/bin/"
43 substituteInPlace po/CMakeLists.txt \
44 --replace-fail "/usr/share/" "${placeholder "out"}/share/"
46 substituteInPlace data/CMakeLists.txt \
47 --replace-fail "/usr/share/" "${placeholder "out"}/share/"
51 description = "Simple kanban-style task organiser";
52 homepage = "https://github.com/smolBlackCat/progress-tracker";
53 license = lib.licenses.mit;
54 mainProgram = "progress";
55 maintainers = with lib.maintainers; [ Guanran928 ];
56 platforms = lib.platforms.linux;