Skip to content

Commit

Permalink
guile-zstd: refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersonTorres committed Oct 5, 2024
1 parent f94674e commit 0882844
Showing 1 changed file with 15 additions and 9 deletions.
24 changes: 15 additions & 9 deletions pkgs/by-name/gu/guile-zstd/package.nix
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{ stdenv
, lib
, fetchFromGitea
, autoreconfHook
, pkg-config
, guile
, texinfo
, zstd
{
stdenv,
lib,
fetchFromGitea,
autoreconfHook,
pkg-config,
guile,
texinfo,
zstd,
}:

stdenv.mkDerivation rec {
Expand All @@ -21,7 +22,12 @@ stdenv.mkDerivation rec {
};

strictDeps = true;
nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
nativeBuildInputs = [
autoreconfHook
guile
pkg-config
texinfo
];
buildInputs = [ guile ];
propagatedBuildInputs = [ zstd ];
makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
Expand Down

0 comments on commit 0882844

Please sign in to comment.