Commit a9237c3a authored by figsoda's avatar figsoda
Browse files

Revert "irr1: add meta.changelog"

This reverts commit 9937c807.
parent 3a2e5671
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -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;
  };
})
}