nixpkgs/pkgs/applications/audio/mus/default.nix
Sol Fisher Romanoff 7ecf8a23e3
mus: init at 0.1.0
2023-08-20 19:19:06 +03:00

28 lines
644 B
Nix

{ lib, fetchFromSourcehut, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "mus";
version = "0.1.0";
src = fetchFromSourcehut {
owner = "~sfr";
repo = pname;
rev = version;
hash = "sha256-s7rizOieOmzK0Stkk1SWe9h/5DoaH6MMmL/5QFeezt0=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"mpd-0.1.0" = "sha256-5UC6aFNJU9B5AlgJ7uPO+W7e2MHpvTu2OpktjiIXMfc=";
};
};
meta = with lib; {
description = "a pretty good mpd client";
homepage = "https://sr.ht/~sfr/mus";
license = licenses.mit;
maintainers = with maintainers; [ sfr ];
mainProgram = "mus";
};
}