forked from M-Labs/thermostat
nix/fetchcargo: fix touch
This commit is contained in:
parent
05f85dba77
commit
91c27d2499
|
@ -1,10 +1,10 @@
|
||||||
{ stdenv, rustPlatform, cacert, git, cargo-vendor, coreutils }:
|
{ stdenv, rustPlatform, cacert, git, cargo-vendor }:
|
||||||
|
|
||||||
with rustPlatform;
|
with rustPlatform;
|
||||||
let
|
let
|
||||||
sha256 = "19cdc0lkm9247n6kf23ki66gysz530j1x2lfnzq7n0cpcs53q3h3";
|
sha256 = "1i9p5d5n01ajbp8lmavyway6vr1mmy107qnccff9glvr91rqx352";
|
||||||
fetchcargo = import ./fetchcargo.nix {
|
fetchcargo = import ./fetchcargo.nix {
|
||||||
inherit stdenv cacert git cargo-vendor coreutils;
|
inherit stdenv cacert git cargo-vendor;
|
||||||
inherit (rust) cargo;
|
inherit (rust) cargo;
|
||||||
};
|
};
|
||||||
adc2tcpDeps = fetchcargo {
|
adc2tcpDeps = fetchcargo {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, cacert, git, cargo, cargo-vendor, coreutils }:
|
{ stdenv, cacert, git, cargo, cargo-vendor }:
|
||||||
{ name, src, sha256 }:
|
{ name, src, sha256 }:
|
||||||
let
|
let
|
||||||
# `src` restricted to the two files that define dependencies
|
# `src` restricted to the two files that define dependencies
|
||||||
|
@ -10,7 +10,7 @@ let
|
||||||
mkdir $out
|
mkdir $out
|
||||||
cp ${src}/Cargo.{toml,lock} $out/
|
cp ${src}/Cargo.{toml,lock} $out/
|
||||||
mkdir $out/src
|
mkdir $out/src
|
||||||
${coreutils}/bin/touch src/main.rs
|
touch $out/src/main.rs
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
|
|
Loading…
Reference in New Issue