Skip to content

Commit

Permalink
libguytools: init at 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r committed Nov 12, 2024
1 parent ea2bc62 commit 98ffb07
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions pkgs/by-name/li/libguytools/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
lib,
stdenv,
fetchurl,
libsForQt5,
}:

stdenv.mkDerivation (finalAttrs: {
pname = "libguytools";
version = "2.1.0";

src = fetchurl {
url = "mirror://sourceforge/project/libguytools/libguytools/LatestSource/tools-${finalAttrs.version}.tar.gz";
hash = "sha256-eVYvjo2wKW2g9/9hL9nbQa1FRWDMMqMHok0V/adPHVY=";
};

qmakeFlags = [
"trunk.pro"
"toolsstatic.pro"
];

enableParallelBuilding = true;

nativeBuildInputs = [
libsForQt5.qmake
libsForQt5.wrapQtAppsHook
];
dontWrapQtApps = true;
buildInputs = [ libsForQt5.qtbase ];

postPatch = ''
sed -i "/dpkg-buildflags/d" tools.pro
patchShebangs create_version_file.sh
'';

preConfigure = ''
./create_version_file.sh
'';

installPhase = ''
runHook preInstall
mkdir -p $out
cp -r lib $out/
cp -r include $out/
runHook postInstall
'';

meta = {
description = "Small programming toolbox";
mainProgram = "libguytools";
homepage = "https://libguytools.sourceforge.io";
maintainers = with lib.maintainers; [ d3vil0p3r ];
platforms = lib.platforms.linux;
license = lib.licenses.gpl2Plus;
};
})

0 comments on commit 98ffb07

Please sign in to comment.