Commit eae54e1a authored by Bart Brouns's avatar Bart Brouns
Browse files

gxmatcheq: modernize

parent d0c80369
Loading
Loading
Loading
Loading
+7 −8
Original line number Diff line number Diff line
@@ -8,16 +8,15 @@
  lv2,
  pkg-config,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "GxMatchEQ.lv2";
  version = "0.1";

  src = fetchFromGitHub {
    owner = "brummer10";
    repo = "GxMatchEQ.lv2";
    rev = "V${version}";
    sha256 = "0azdmgzqwjn26nx38iw13666a1i4y2bv39wk89pf6ihdi46klf72";
    rev = "V${finalAttrs.version}";
    hash = "sha256-4jg6DYkNRuNuQpOnsZfwJAZljBmBRzS6NcJKjv+r7Ss=";
  };

  nativeBuildInputs = [ pkg-config ];
@@ -33,10 +32,10 @@ stdenv.mkDerivation rec {

  installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];

  meta = with lib; {
  meta = {
    homepage = "https://github.com/brummer10/GxMatchEQ.lv2";
    description = "Matching Equalizer to apply EQ curve from one source to another source";
    maintainers = [ maintainers.magnetophon ];
    license = licenses.gpl3;
    maintainers = with lib.maintainers; [ magnetophon ];
    license = lib.licenses.gpl3;
  };
}
})