nixpkgs/pkgs/tools/misc/sfz/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
758 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "sfz";
2022-09-22 05:29:32 +02:00
version = "0.7.1";
src = fetchFromGitHub {
owner = "weihanglo";
repo = pname;
rev = "v${version}";
2022-09-22 05:29:32 +02:00
hash = "sha256-mKH1vgk+3tZEnjJRkfa0dDR383VN1VLNd3HEzC7f8YI=";
};
2022-09-22 05:29:32 +02:00
cargoSha256 = "sha256-MgbK39xAr8g9F+1MXZiw5rE/PsgQPcLZ2ZV6LiQbA24=";
# error: Found argument '--test-threads' which wasn't expected, or isn't valid in this context
doCheck = false;
meta = with lib; {
description = "Simple static file serving command-line tool written in Rust";
homepage = "https://github.com/weihanglo/sfz";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ dit7ya ];
2023-11-27 02:17:53 +01:00
mainProgram = "sfz";
};
}