nix/fetchcargo: fix touch

master
Astro 2019-05-10 00:09:17 +02:00
parent 05f85dba77
commit 91c27d2499
2 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
{ stdenv, rustPlatform, cacert, git, cargo-vendor, coreutils }:
{ stdenv, rustPlatform, cacert, git, cargo-vendor }:
with rustPlatform;
let
sha256 = "19cdc0lkm9247n6kf23ki66gysz530j1x2lfnzq7n0cpcs53q3h3";
sha256 = "1i9p5d5n01ajbp8lmavyway6vr1mmy107qnccff9glvr91rqx352";
fetchcargo = import ./fetchcargo.nix {
inherit stdenv cacert git cargo-vendor coreutils;
inherit stdenv cacert git cargo-vendor;
inherit (rust) cargo;
};
adc2tcpDeps = fetchcargo {

View File

@ -1,4 +1,4 @@
{ stdenv, cacert, git, cargo, cargo-vendor, coreutils }:
{ stdenv, cacert, git, cargo, cargo-vendor }:
{ name, src, sha256 }:
let
# `src` restricted to the two files that define dependencies
@ -10,7 +10,7 @@ let
mkdir $out
cp ${src}/Cargo.{toml,lock} $out/
mkdir $out/src
${coreutils}/bin/touch src/main.rs
touch $out/src/main.rs
'';
};
in