sfz: init at 0.7.0 (#183911)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
Mostly Void 2022-07-30 17:35:34 +05:30 committed by GitHub
parent 8f38f2aeab
commit db127e82d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "sfz";
version = "0.7.0";
src = fetchFromGitHub {
owner = "weihanglo";
repo = pname;
rev = "v${version}";
hash = "sha256-XY1xsQgXzmX8jmDDLIivXeW9MsNA/pVtYapcBkBhldE=";
};
cargoSha256 = "sha256-w3HKnCAPSVgx4mqNB7Q0sMCDC4U+4fdIUUwJFz19XdI=";
# 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 ];
};
}

View file

@ -4472,6 +4472,8 @@ with pkgs;
s2png = callPackage ../tools/graphics/s2png { };
sfz = callPackage ../tools/misc/sfz { };
shab = callPackage ../tools/text/shab { };
sheldon = callPackage ../tools/misc/sheldon { };