depot/third_party/nixpkgs/pkgs/by-name/pr/progress-tracker/package.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

58 lines
1.2 KiB
Nix

{
lib,
catch2_3,
cmake,
fetchFromGitHub,
gtkmm4,
libadwaita,
pcre2,
pkg-config,
stdenv,
tinyxml-2,
wrapGAppsHook4,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "progress-tracker";
version = "1.5.2";
src = fetchFromGitHub {
owner = "smolBlackCat";
repo = "progress-tracker";
rev = "v${finalAttrs.version}";
hash = "sha256-SM68TPxCMmLELKuryx4jde9TeK4mxfSrZ+uE/lFdP7M=";
};
nativeBuildInputs = [
cmake
pkg-config
wrapGAppsHook4
];
buildInputs = [
catch2_3
gtkmm4
libadwaita
pcre2
tinyxml-2
];
postPatch = ''
substituteInPlace src/CMakeLists.txt \
--replace-fail "/usr/bin/" "${placeholder "out"}/bin/"
substituteInPlace po/CMakeLists.txt \
--replace-fail "/usr/share/" "${placeholder "out"}/share/"
substituteInPlace data/CMakeLists.txt \
--replace-fail "/usr/share/" "${placeholder "out"}/share/"
'';
meta = {
description = "Simple kanban-style task organiser";
homepage = "https://github.com/smolBlackCat/progress-tracker";
license = lib.licenses.mit;
mainProgram = "progress";
maintainers = with lib.maintainers; [ Guanran928 ];
platforms = lib.platforms.linux;
};
})