biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / sfz / default.nix
blob768afed6679d1a82829d249d79817ef62aa3aa0b
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "sfz";
5   version = "0.7.1";
7   src = fetchFromGitHub {
8     owner = "weihanglo";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-mKH1vgk+3tZEnjJRkfa0dDR383VN1VLNd3HEzC7f8YI=";
12   };
14   cargoHash = "sha256-MgbK39xAr8g9F+1MXZiw5rE/PsgQPcLZ2ZV6LiQbA24=";
16   # error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
17   doCheck = false;
19   meta = with lib; {
20     description = "Simple static file serving command-line tool written in Rust";
21     homepage = "https://github.com/weihanglo/sfz";
22     license = with licenses; [ asl20 /* or */ mit ];
23     maintainers = with maintainers; [ dit7ya ];
24     mainProgram = "sfz";
25   };