Merge pull request #232265 from figsoda/wolf

authored by figsoda and committed by GitHub b2fc0b72 0f58eaeb

+6 -6
+6 -6
pkgs/applications/audio/wolf-shaper/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub , libjack2, lv2, xorg, liblo, libGL, libXcursor, pkg-config }: 1 + { lib, stdenv, fetchFromGitHub, libjack2, lv2, xorg, liblo, libGL, libXcursor, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wolf-shaper"; 5 5 version = "1.0.2"; 6 6 7 7 src = fetchFromGitHub { 8 - owner = "pdesaulniers"; 8 + owner = "wolf-plugins"; 9 9 repo = "wolf-shaper"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-4oi1wnex6eNRHUWXZHnvrmqp4veFuPJqD0YuOhDepg4="; 11 + hash = "sha256-4oi1wnex6eNRHUWXZHnvrmqp4veFuPJqD0YuOhDepg4="; 12 12 fetchSubmodules = true; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkg-config ]; 16 - buildInputs = [ libjack2 lv2 xorg.libX11 liblo libGL libXcursor ]; 16 + buildInputs = [ libjack2 lv2 xorg.libX11 liblo libGL libXcursor ]; 17 17 18 18 makeFlags = [ 19 19 "BUILD_LV2=true" ··· 38 38 ''; 39 39 40 40 meta = with lib; { 41 - homepage = "https://pdesaulniers.github.io/wolf-shaper/"; 41 + homepage = "https://wolf-plugins.github.io/wolf-shaper/"; 42 42 description = "Waveshaper plugin with spline-based graph editor"; 43 - license = licenses.gpl3; 43 + license = licenses.gpl3Plus; 44 44 maintainers = [ maintainers.magnetophon ]; 45 45 platforms = [ "i686-linux" "x86_64-linux" ]; 46 46 };