Unverified Commit 7e88a3fc authored by Robert Scott's avatar Robert Scott Committed by GitHub
Browse files

Merge pull request #232004 from Scrumplex/fix-muso-build

muso: avoid build failure using an updated lockfile
parents 9f9fcc14 f3587b78
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -4,13 +4,13 @@

rustPlatform.buildRustPackage rec {
  pname = "muso";
  version = "2.0.0";
  version = "unstable-2021-09-02";

  src = fetchFromGitHub {
    owner = "quebin31";
    repo = pname;
    rev = "68cc90869bcc0f202830a318fbfd6bb9bdb75a39";
    sha256 = "1dnfslliss173igympl7h1zc0qz0g10kf96dwrcj6aglmvvw426p";
    rev = "6dd1c6d3a82b21d4fb2606accf2f26179eb6eaf9";
    hash = "sha256-09DWUER0ZWQuwfE3sjov2GjJNI7coE3D3E5iUy9mlSE=";
  };

  nativeBuildInputs = [ pkg-config wrapGAppsHook ];
@@ -26,10 +26,10 @@ rustPlatform.buildRustPackage rec {
    cp share/* $out/share/muso/
  '';

  cargoSha256 = "1hgdzyz005244f2mh97js9ga0a6s2hcd6iydz07f1hmhsh1j2bwy";
  cargoHash = "sha256-+UVUejKCfjC6zdW315wmu7f3A5GmnoQ3rIk8SK6LIRI=";

  meta = with lib; {
    broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
    broken = stdenv.isDarwin;
    description = "An automatic music sorter (based on ID3 tags)";
    homepage = "https://github.com/quebin31/muso";
    license = with licenses; [ gpl3Plus ];