mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 10:57:58 +00:00
rav1e: 0.3.2 -> 0.3.3
The Cargo.lock file is not included in the master branch but it is
currently added for the releases (e.g. [0]). Since the GitHub deploy
action currently fails for other reasons [1] we should use the
Cargo.lock from the repository instead.
[0]: 80573d2bf7
[1]: https://github.com/xiph/rav1e/issues/2373
This commit is contained in:
parent
dde87455ed
commit
e3fa38ec16
@ -1,31 +1,17 @@
|
|||||||
{ rustPlatform, fetchFromGitHub, fetchurl, stdenv, lib, nasm }:
|
{ rustPlatform, fetchFromGitHub, lib, nasm }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "rav1e";
|
pname = "rav1e";
|
||||||
version = "0.3.2";
|
version = "0.3.3";
|
||||||
|
|
||||||
src = stdenv.mkDerivation rec {
|
src = fetchFromGitHub {
|
||||||
name = "${pname}-${version}-source";
|
owner = "xiph";
|
||||||
|
repo = "rav1e";
|
||||||
src = fetchFromGitHub {
|
rev = "v${version}";
|
||||||
owner = "xiph";
|
sha256 = "0a9dryag4x35a2c45qiq1j5xk9ydcpw1g6kici85d2yrc2z3hwrx";
|
||||||
repo = "rav1e";
|
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "0qqw397yfglwj9kg45imhx1p5bb0nsx2gkaxj4lcc9i1hav6ia43";
|
|
||||||
};
|
|
||||||
cargoLock = fetchurl {
|
|
||||||
url = "https://github.com/xiph/rav1e/releases/download/v${version}/Cargo.lock";
|
|
||||||
sha256 = "1kdr3q97vq3mip1h7iv2iy9qzlgb69y6nwjzbw9nfi7dl7ip6q3l";
|
|
||||||
};
|
|
||||||
|
|
||||||
installPhase = ''
|
|
||||||
mkdir -p $out
|
|
||||||
cp -R ./* $out/
|
|
||||||
cp ${cargoLock} $out/Cargo.lock
|
|
||||||
'';
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "03zsvavk7wskz843qxwwcymhclarcp6nfxwa1mwna3nmzvlm1hwb";
|
cargoSha256 = "1xaincrmpicp0skf9788w5631x1hxvifvq06hh5ribdz79zclzx3";
|
||||||
|
|
||||||
nativeBuildInputs = [ nasm ];
|
nativeBuildInputs = [ nasm ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user