veroroute: init at 2.39 (#369345)

This commit is contained in:
Niklas Hambüchen 2025-05-24 15:06:01 +02:00 committed by GitHub
commit d0a08b5026
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,38 @@
{
lib,
stdenv,
fetchurl,
libsForQt5,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "veroroute";
version = "2.39";
src = fetchurl {
url = "mirror://sourceforge/veroroute/veroroute-${finalAttrs.version}.tar.gz";
hash = "sha256-+qX8NFkPkQGW29uQUEuetgW3muDP56lMJgrGCAo+5pc=";
};
nativeBuildInputs = [
libsForQt5.qmake
libsForQt5.wrapQtAppsHook
];
buildInputs = [
libsForQt5.qtbase
];
preConfigure = ''
cd Src/
'';
meta = {
description = "Qt based Veroboard/Perfboard/PCB layout and routing application";
homepage = "https://sourceforge.net/projects/veroroute";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [
nh2
];
platforms = lib.platforms.linux;
};
})