veroroute: init at 2.39 (#369345)

authored by Niklas Hambüchen and committed by GitHub d0a08b50 1066c4b8

+38
+38
pkgs/by-name/ve/veroroute/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchurl, 5 + libsForQt5, 6 + }: 7 + 8 + stdenv.mkDerivation (finalAttrs: { 9 + pname = "veroroute"; 10 + version = "2.39"; 11 + 12 + src = fetchurl { 13 + url = "mirror://sourceforge/veroroute/veroroute-${finalAttrs.version}.tar.gz"; 14 + hash = "sha256-+qX8NFkPkQGW29uQUEuetgW3muDP56lMJgrGCAo+5pc="; 15 + }; 16 + 17 + nativeBuildInputs = [ 18 + libsForQt5.qmake 19 + libsForQt5.wrapQtAppsHook 20 + ]; 21 + buildInputs = [ 22 + libsForQt5.qtbase 23 + ]; 24 + 25 + preConfigure = '' 26 + cd Src/ 27 + ''; 28 + 29 + meta = { 30 + description = "Qt based Veroboard/Perfboard/PCB layout and routing application"; 31 + homepage = "https://sourceforge.net/projects/veroroute"; 32 + license = lib.licenses.gpl3Plus; 33 + maintainers = with lib.maintainers; [ 34 + nh2 35 + ]; 36 + platforms = lib.platforms.linux; 37 + }; 38 + })