mirror of
https://github.com/asciinema/asciinema.git
synced 2025-12-16 11:48:13 +01:00
ref(nix): make local path reproducible
This commit is contained in:
@@ -57,7 +57,10 @@
|
|||||||
.buildRustPackage {
|
.buildRustPackage {
|
||||||
pname = packageToml.name;
|
pname = packageToml.name;
|
||||||
inherit (packageToml) version;
|
inherit (packageToml) version;
|
||||||
src = ./.;
|
src = builtins.path {
|
||||||
|
path = ./.;
|
||||||
|
inherit (packageToml) name;
|
||||||
|
};
|
||||||
cargoLock.lockFile = ./Cargo.lock;
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
buildInputs = buildDeps rust;
|
buildInputs = buildDeps rust;
|
||||||
dontUseCargoParallelTests = true;
|
dontUseCargoParallelTests = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user