2014-10-10 07:59:37 -07:00
|
|
|
# This file defines the source of Rust / cargo's crates registry
|
|
|
|
#
|
|
|
|
# buildRustPackage will automatically download dependencies from the registry
|
|
|
|
# version that we define here. If you're having problems downloading / finding
|
|
|
|
# a Rust library, try updating this to a newer commit.
|
|
|
|
|
2017-06-14 14:36:27 -07:00
|
|
|
{ runCommand, fetchFromGitHub, git
|
|
|
|
, src ? fetchFromGitHub {
|
|
|
|
owner = "rust-lang";
|
|
|
|
repo = "crates.io-index";
|
|
|
|
rev = "cda0f689f844710a3d73c7ff459efa64997f73b5";
|
|
|
|
sha256 = "1b3brl9nn3qqaysd8lx9gaazd863grqx547iw7y9j6mkcc7sakvc";
|
|
|
|
}
|
|
|
|
}:
|
|
|
|
|
|
|
|
runCommand "rustRegistry" { inherit src; } ''
|
2015-04-23 11:42:06 -07:00
|
|
|
# For some reason, cargo doesn't like fetchgit's git repositories, not even
|
2015-05-12 05:27:47 -07:00
|
|
|
# if we set leaveDotGit to true, set the fetchgit branch to 'master' and clone
|
|
|
|
# the repository (tested with registry rev
|
2015-04-23 11:42:06 -07:00
|
|
|
# 965b634156cc5c6f10c7a458392bfd6f27436e7e), failing with the message:
|
|
|
|
#
|
|
|
|
# "Target OID for the reference doesn't exist on the repository"
|
|
|
|
#
|
|
|
|
# So we'll just have to create a new git repository from scratch with the
|
|
|
|
# contents downloaded with fetchgit...
|
|
|
|
|
|
|
|
mkdir -p $out
|
|
|
|
|
|
|
|
cp -r ${src}/* $out/
|
|
|
|
|
|
|
|
cd $out
|
|
|
|
|
|
|
|
git="${git}/bin/git"
|
|
|
|
|
|
|
|
$git init
|
|
|
|
$git config --local user.email "example@example.com"
|
|
|
|
$git config --local user.name "example"
|
|
|
|
$git add .
|
2017-04-04 02:38:05 -07:00
|
|
|
$git commit --quiet -m 'Rust registry commit'
|
2016-05-28 03:48:05 -07:00
|
|
|
|
|
|
|
touch $out/touch . "$out/.cargo-index-lock"
|
2015-04-23 11:42:06 -07:00
|
|
|
''
|