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

Also update homepage
This commit is contained in:
Felipe Silva 2023-08-13 21:57:52 -03:00
parent 16d446e69a
commit a2f10d6366
No known key found for this signature in database
GPG Key ID: DFCE681E1B7974D8

View File

@ -1,14 +1,14 @@
{ lib, fetchFromGitHub, beets, python3Packages }:
python3Packages.buildPythonApplication {
python3Packages.buildPythonApplication rec {
pname = "beets-copyartifacts";
version = "unstable-2020-02-15";
version = "0.1.5";
src = fetchFromGitHub {
repo = "beets-copyartifacts";
owner = "adammillerio";
rev = "85eefaebf893cb673fa98bfde48406ec99fd1e4b";
sha256 = "sha256-bkT2BZZ2gdcacgvyrVe2vMrOMV8iMAm8Q5xyrZzyqU0=";
rev = "v${version}";
sha256 = "sha256-UTZh7T6Z288PjxFgyFxHnPt0xpAH3cnr8/jIrlJhtyU=";
};
postPatch = ''
@ -27,7 +27,7 @@ python3Packages.buildPythonApplication {
meta = {
description = "Beets plugin to move non-music files during the import process";
homepage = "https://github.com/sbarakat/beets-copyartifacts";
homepage = "https://github.com/adammillerio/beets-copyartifacts";
license = lib.licenses.mit;
inherit (beets.meta) platforms;
};