Revert "irr1: add meta.changelog"

This reverts commit 9937c80788.
This commit is contained in:
figsoda
2023-02-13 09:16:50 -05:00
parent 3a2e567184
commit a9237c3a60
+5 -5
View File
@@ -4,25 +4,25 @@
, cmake
}:
stdenv.mkDerivation (self: {
stdenv.mkDerivation rec {
pname = "irr1";
version = "1.9.4";
src = fetchFromGitHub {
owner = "berndporr";
repo = "iir1";
rev = self.version;
rev = version;
hash = "sha256-T8gl51IkZIGq+6D5ge4Kb3wm5aw7Rhphmnf6TTGwHbs=";
};
nativeBuildInputs = [ cmake ];
meta = {
homepage = "http://berndporr.github.io/iir1/";
description = "A DSP IIR realtime filter library written in C++";
changelog = "https://github.com/berndporr/iir1/releases/tag/${self.version}";
downloadPage = "https://github.com/berndporr/iir1";
homepage = "http://berndporr.github.io/iir1/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.AndersonTorres ];
platforms = lib.platforms.unix;
};
})
}