85f96822a0
Rust 1.50.0 incorporated a Cargo change (rust-lang/cargo#8937) in which cargo vendor erroneously changed permissions of vendored crates. This was fixed in Rust 1.51.0 (rust-lang/cargo#9131). Unfortunately, this means that all cargoSha256/cargoHashes produced during the Rust 1.50.0 cycle are potentially broken. This change updates cargoSha256/cargoHash tree-wide. Fixes #121994.
27 lines
781 B
Nix
27 lines
781 B
Nix
{ lib, fetchFromGitHub, rustPlatform, libseccomp }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "railcar";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "oracle";
|
|
repo = "railcar";
|
|
rev = "v${version}";
|
|
sha256 = "09zn160qxd7760ii6rs5nhr00qmaz49x1plclscznxh9hinyjyh9";
|
|
};
|
|
|
|
# Submitted upstream https://github.com/oracle/railcar/pull/44
|
|
cargoPatches = [ ./cargo-lock.patch ];
|
|
cargoSha256 = "1zsch6gpbw96j5wa68ksbk4x6nbsl7dbvdhdprljpcyrwwkhz47x";
|
|
|
|
buildInputs = [ libseccomp ];
|
|
|
|
meta = with lib; {
|
|
description = "Rust implementation of the Open Containers Initiative oci-runtime";
|
|
homepage = "https://github.com/oracle/railcar";
|
|
license = with licenses; [ asl20 /* or */ upl ];
|
|
maintainers = [ maintainers.spacekookie ];
|
|
};
|
|
}
|