beetsPackages.copyartifacts: unstable-2020-02-15 -> 0.1.5

Also update homepage

+5 -5
+5 -5
pkgs/tools/audio/beets/plugins/copyartifacts.nix
··· 1 1 { lib, fetchFromGitHub, beets, python3Packages }: 2 2 3 - python3Packages.buildPythonApplication { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "beets-copyartifacts"; 5 - version = "unstable-2020-02-15"; 5 + version = "0.1.5"; 6 6 7 7 src = fetchFromGitHub { 8 8 repo = "beets-copyartifacts"; 9 9 owner = "adammillerio"; 10 - rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b"; 11 - sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0="; 10 + rev = "v${version}"; 11 + sha256 = "sha256-UTZh7T6Z288PjxFgyFxHnPt0xpAH3cnr8/jIrlJhtyU="; 12 12 }; 13 13 14 14 postPatch = '' ··· 27 27 28 28 meta = { 29 29 description = "Beets plugin to move non-music files during the import process"; 30 - homepage = "https://github.com/sbarakat/beets-copyartifacts"; 30 + homepage = "https://github.com/adammillerio/beets-copyartifacts"; 31 31 license = lib.licenses.mit; 32 32 inherit (beets.meta) platforms; 33 33 };