Files
nixpkgs/pkgs/development/libraries/ldutils/default.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

42 lines
855 B
Nix

{
mkDerivation,
lib,
fetchFromGitLab,
libsForQt5,
cmake,
}:
mkDerivation {
pname = "ldutils";
version = "1.15";
src = fetchFromGitLab {
owner = "ldutils-projects";
repo = "ldutils";
rev = "4fc416f694ce888c5bd4c4432a7730bb6260475c";
#rev = "v_${version}";
hash = "sha256-UMDayvz9RlcR4HVJNn7tN4FKbiKAFRSPaK0osA6OGTI=";
};
buildInputs = with libsForQt5.qt5; [
qtcharts
qtsvg
];
nativeBuildInputs = [
cmake
];
qmakeFlags = [ "ldutils.pro" ];
LDUTILS_LIB = placeholder "out";
LDUTILS_INCLUDE = placeholder "out";
meta = with lib; {
description = "Headers and link library for other ldutils projects";
homepage = "https://gitlab.com/ldutils-projects/ldutils";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ sohalt ];
platforms = platforms.linux;
};
}