diff --git a/pkgs/by-name/gx/gxmatcheq-lv2/package.nix b/pkgs/by-name/gx/gxmatcheq-lv2/package.nix index 5a037d1a4ef0..1845be27c664 100644 --- a/pkgs/by-name/gx/gxmatcheq-lv2/package.nix +++ b/pkgs/by-name/gx/gxmatcheq-lv2/package.nix @@ -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; }; -} +})