cargo-pgo: init at 0.2.6
This commit is contained in:
parent
a496094154
commit
239b95d957
1 changed files with 29 additions and 0 deletions
29
pkgs/by-name/ca/cargo-pgo/package.nix
Normal file
29
pkgs/by-name/ca/cargo-pgo/package.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-pgo";
|
||||
version = "0.2.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "kobzol";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-u3kWYPLJYarwwudRpeBdJglP9kNbLRTYgEvZT2pBBoY=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-Peicupa2vFDzPCH0OQYk7plkWIn82o45oGutOyMlI2s=";
|
||||
|
||||
# Integration tests do not run in Nix build environment due to needing to
|
||||
# create and build Cargo workspaces.
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cargo subcommand for optimizing Rust binaries/libraries with PGO and BOLT";
|
||||
homepage = "https://github.com/kobzol/cargo-pgo";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ dannixon ];
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue