Skip to content

Commit

Permalink
Update package.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
D3vil0p3r authored Nov 6, 2024
1 parent e69e1e7 commit e0b1ac6
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions pkgs/by-name/li/libguytools/package.nix
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
{ lib
, stdenv
, fetchurl
, libsForQt5
{
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=";
url = "mirror://sourceforge/project/libguytools/libguytools/LatestSource/tools-${finalAttrs.version}.tar.gz";
hash = "sha256-eVYvjo2wKW2g9/9hL9nbQa1FRWDMMqMHok0V/adPHVY=";
};

qmakeFlags = [
Expand All @@ -20,7 +21,10 @@ stdenv.mkDerivation (finalAttrs: {

enableParallelBuilding = true;

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

Expand Down

0 comments on commit e0b1ac6

Please sign in to comment.