exaile: 4.1.1 -> 4.1.2

This commit is contained in:
ryneeverett 2022-09-11 23:43:01 -04:00
parent 88199c6df9
commit 1dbade400d

View File

@ -23,20 +23,14 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "exaile"; pname = "exaile";
version = "4.1.1"; version = "4.1.2";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "exaile"; owner = "exaile";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "0s29lm0i4slgaw5l5s9a2zx0b83xac43rnil5cvyi210dxm5s048"; sha256 = "sha256-GZyCuPy57NhGwgbLMrRKW5xmc1Udon7WtsrD4upviuQ=";
}; };
patches = [
(fetchpatch {
url = "https://github.com/exaile/exaile/pull/751.patch";
sha256 = "sha256-jCJh85Z3HQcyS4ntQP5HwYJgM7WNHcWzjf0BdNJitsM=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
gobject-introspection gobject-introspection
@ -76,7 +70,6 @@ stdenv.mkDerivation rec {
++ lib.optional wikipediaSupport webkitgtk; ++ lib.optional wikipediaSupport webkitgtk;
checkInputs = with python3.pkgs; [ checkInputs = with python3.pkgs; [
mox3
pytest pytest
]; ];