freqtweak: fix version, modernize

This commit is contained in:
coolcuber
2026-08-15 17:50:11 -04:00
parent e59a0cb53a
commit 1e7fa18cae

View File

@@ -2,8 +2,7 @@
lib,
stdenv,
fetchFromGitHub,
autoconf,
automake,
autoreconfHook,
pkg-config,
fftwFloat,
libjack2,
@@ -15,18 +14,19 @@
stdenv.mkDerivation {
pname = "freqtweak";
version = "unstable-2019-08-03";
version = "0.6.1-unstable-2019-08-03";
__structuredAttrs = true;
src = fetchFromGitHub {
owner = "essej";
repo = "freqtweak";
rev = "d4205337558d36657a4ee6b3afb29358aa18c0fd";
sha256 = "10cq27mdgrrc54a40al9ahi0wqd0p2c1wxbdg518q8pzfxaxs5fi";
hash = "sha256-0RXdVXf/IoxCeW11Hpi4oGEOIlSJKkAUKSzn1+oRmIE=";
};
nativeBuildInputs = [
autoconf
automake
autoreconfHook
pkg-config
];
buildInputs = [
@@ -37,10 +37,6 @@ stdenv.mkDerivation {
wxwidgets_3_2
];
preConfigure = ''
sh autogen.sh
'';
enableParallelBuilding = true;
meta = {