commit
b2426adf1c
@ -297,6 +297,7 @@
|
|||||||
refnil = "Martin Lavoie <broemartino@gmail.com>";
|
refnil = "Martin Lavoie <broemartino@gmail.com>";
|
||||||
relrod = "Ricky Elrod <ricky@elrod.me>";
|
relrod = "Ricky Elrod <ricky@elrod.me>";
|
||||||
renzo = "Renzo Carbonara <renzocarbonara@gmail.com>";
|
renzo = "Renzo Carbonara <renzocarbonara@gmail.com>";
|
||||||
|
retrry = "Tadas Barzdžius <retrry@gmail.com>";
|
||||||
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
|
rick68 = "Wei-Ming Yang <rick68@gmail.com>";
|
||||||
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
|
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
|
||||||
rnhmjoj = "Michele Guerini Rocco <micheleguerinirocco@me.com>";
|
rnhmjoj = "Michele Guerini Rocco <micheleguerinirocco@me.com>";
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchdarcs, rustUnstable, openssl, libssh }:
|
{ stdenv, fetchdarcs, rustPlatform, openssl, libssh }:
|
||||||
|
|
||||||
with rustUnstable;
|
with rustPlatform;
|
||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
name = "pijul-${version}";
|
name = "pijul-${version}";
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{ stdenv, callPackage }:
|
{ stdenv, callPackage }:
|
||||||
|
|
||||||
callPackage ./generic.nix {
|
callPackage ./generic.nix {
|
||||||
shortVersion = "1.7.0";
|
shortVersion = "1.8.0";
|
||||||
isRelease = true;
|
isRelease = true;
|
||||||
forceBundledLLVM = false;
|
forceBundledLLVM = false;
|
||||||
configureFlags = [ "--release-channel=stable" ];
|
configureFlags = [ "--release-channel=stable" ];
|
||||||
srcSha = "05f4v6sfmvkwsv6a7jp9sxsm84s0gdvqyf2wwdi1ilg9k8nxzgd4";
|
srcSha = "1s03aymmhhrndq29sv9cs8s4p1sg8qvq8ds6lyp6s4ny8nyvdpzy";
|
||||||
|
|
||||||
/* Rust is bootstrapped from an earlier built version. We need
|
/* Rust is bootstrapped from an earlier built version. We need
|
||||||
to fetch these earlier versions, which vary per platform.
|
to fetch these earlier versions, which vary per platform.
|
||||||
@ -15,12 +15,12 @@ callPackage ./generic.nix {
|
|||||||
for the tagged release and not a snapshot in the current HEAD.
|
for the tagged release and not a snapshot in the current HEAD.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
snapshotHashLinux686 = "a09c4a4036151d0cb28e265101669731600e01f2";
|
snapshotHashLinux686 = "5f194aa7628c0703f0fd48adc4ec7f3cc64b98c7";
|
||||||
snapshotHashLinux64 = "97e2a5eb8904962df8596e95d6e5d9b574d73bf4";
|
snapshotHashLinux64 = "d29b7607d13d64078b6324aec82926fb493f59ba";
|
||||||
snapshotHashDarwin686 = "ca52d2d3ba6497ed007705ee3401cf7efc136ca1";
|
snapshotHashDarwin686 = "4c8e42dd649e247f3576bf9dfa273327b4907f9c";
|
||||||
snapshotHashDarwin64 = "3c44ffa18f89567c2b81f8d695e711c86d81ffc7";
|
snapshotHashDarwin64 = "411a41363f922d1d93fa62ff2fedf5c35e9cccb2";
|
||||||
snapshotDate = "2015-12-18";
|
snapshotDate = "2016-02-17";
|
||||||
snapshotRev = "3391630";
|
snapshotRev = "4d3eebf";
|
||||||
|
|
||||||
patches = [ ./patches/remove-uneeded-git.patch ]
|
patches = [ ./patches/remove-uneeded-git.patch ]
|
||||||
++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
++ stdenv.lib.optional stdenv.needsPax ./patches/grsec.patch;
|
||||||
|
@ -62,7 +62,7 @@ let version = if isRelease then
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://www.rust-lang.org/;
|
homepage = http://www.rust-lang.org/;
|
||||||
description = "A safe, concurrent, practical language";
|
description = "A safe, concurrent, practical language";
|
||||||
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington ];
|
maintainers = with maintainers; [ madjar cstrahan wizeman globin havvy wkennington retrry ];
|
||||||
license = [ licenses.mit licenses.asl20 ];
|
license = [ licenses.mit licenses.asl20 ];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
@ -164,7 +164,8 @@ with stdenv.lib; stdenv.mkDerivation {
|
|||||||
buildInputs = [ ncurses ]
|
buildInputs = [ ncurses ]
|
||||||
++ optional (!forceBundledLLVM) llvmShared;
|
++ optional (!forceBundledLLVM) llvmShared;
|
||||||
|
|
||||||
enableParallelBuilding = false; # missing files during linking, occasionally
|
# https://github.com/rust-lang/rust/issues/30181
|
||||||
|
# enableParallelBuilding = false; # missing files during linking, occasionally
|
||||||
|
|
||||||
outputs = [ "out" "doc" ];
|
outputs = [ "out" "doc" ];
|
||||||
setOutputFlags = false;
|
setOutputFlags = false;
|
||||||
|
@ -31,8 +31,8 @@
|
|||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://crates.io;
|
homepage = http://crates.io;
|
||||||
description = "Downloads your Rust project's dependencies and builds your project";
|
description = "Downloads your Rust project's dependencies and builds your project";
|
||||||
maintainers = with maintainers; [ wizeman ];
|
maintainers = with maintainers; [ wizeman retrry ];
|
||||||
license = [ licenses.mit licenses.asl20 ];
|
license = [ licenses.mit licenses.asl20 ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{ stdenv, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl
|
{ stdenv, cacert, fetchgit, rustPlatform, file, curl, python, pkgconfig, openssl
|
||||||
, cmake, zlib, makeWrapper }:
|
, cmake, zlib, makeWrapper }:
|
||||||
|
|
||||||
with rustPlatform;
|
with rustPlatform;
|
||||||
|
|
||||||
with ((import ./common.nix) {
|
with ((import ./common.nix) {
|
||||||
inherit stdenv rustc;
|
inherit stdenv rustc;
|
||||||
version = "0.8.0";
|
version = "0.9.0";
|
||||||
});
|
});
|
||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
@ -15,10 +15,10 @@ buildRustPackage rec {
|
|||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = "git://github.com/rust-lang/cargo";
|
url = "git://github.com/rust-lang/cargo";
|
||||||
rev = "refs/tags/${version}";
|
rev = "refs/tags/${version}";
|
||||||
sha256 = "02z0b6hpygjjfbskg22ggrhdv2nasrgf8x1fd8y0qzg4krx2czlh";
|
sha256 = "0d3n2jdhaz06yhilvmw3m2avxv501da1hdhljc9mwkz3l5bkv2jv";
|
||||||
};
|
};
|
||||||
|
|
||||||
depsSha256 = "1gwc5ygs3h8jxs506xmbj1xzaqpb3kmg3pkxg9j9yqy616jw6rcn";
|
depsSha256 = "1x2m7ww2z8nl5ic2nds85p7ma8x0zp654jg7ay905ia95daiabzg";
|
||||||
|
|
||||||
buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ];
|
buildInputs = [ file curl pkgconfig python openssl cmake zlib makeWrapper ];
|
||||||
|
|
||||||
@ -28,8 +28,15 @@ buildRustPackage rec {
|
|||||||
|
|
||||||
buildPhase = "make";
|
buildPhase = "make";
|
||||||
|
|
||||||
# Disable check phase as there are lots of failures (some probably due to
|
checkPhase = ''
|
||||||
# trying to access the network).
|
# Export SSL_CERT_FILE as without it one test fails with SSL verification error
|
||||||
|
export SSL_CERT_FILE=${cacert}/etc/ssl/certs/ca-bundle.crt
|
||||||
|
# Disable cross compilation tests
|
||||||
|
export CFG_DISABLE_CROSS_TESTS=1
|
||||||
|
cargo test
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Disable check phase as there are failures (author_prefers_cargo test fails)
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -4,16 +4,16 @@ with rustPlatform;
|
|||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
name = "rustfmt-${version}";
|
name = "rustfmt-${version}";
|
||||||
version = "2016-03-22";
|
version = "0.4";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rust-lang-nursery";
|
owner = "rust-lang-nursery";
|
||||||
repo = "rustfmt";
|
repo = "rustfmt";
|
||||||
rev = "ca757183fedf8e89286372b91ca074c11d99c4f4";
|
rev = "19768da5c97c108a05e6f545b73ba4b76d1b1788";
|
||||||
sha256 = "0ngg5m002hwwmsqy9wr50dj3l3zgwk39701wzszm3nrhz6x13dmj";
|
sha256 = "0f2m0gvlqlybcjl2xqwxlp5hjkhd30kx25dq56k5x0r3808ijksg";
|
||||||
};
|
};
|
||||||
|
|
||||||
depsSha256 = "0mg4z197iiwjlgqs5izacld25cr11qi3bcrqq204f0jzrnj3y8ag";
|
depsSha256 = "1lbcpvp7xhyl96w7jfd18w6py60nwllr93jna5j33zvnip61cpf5";
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A tool for formatting Rust code according to style guidelines";
|
description = "A tool for formatting Rust code according to style guidelines";
|
||||||
|
@ -4,15 +4,15 @@ with rustPlatform;
|
|||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
name = "exa-${version}";
|
name = "exa-${version}";
|
||||||
version = "2016-04-11";
|
version = "2016-04-20";
|
||||||
|
|
||||||
depsSha256 = "1rpynsni2r3gim10xc1qkj51wpbzafwsr99y61zh41v4vh047g1k";
|
depsSha256 = "1rpynsni2r3gim10xc1qkj51wpbzafwsr99y61zh41v4vh047g1k";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ogham";
|
owner = "ogham";
|
||||||
repo = "exa";
|
repo = "exa";
|
||||||
rev = "9b87ef1da2231acef985bb08f7bd4a557167b652";
|
rev = "110a1c716bfc4a7f74f74b3c4f0a881c773fcd06";
|
||||||
sha256 = "1f71bqkpc6bf9jg1zxy21rzbyhzghwfmgbyyyb81ggxcri0kajwi";
|
sha256 = "136yxi85m50vwmqinr1wnd0h29n5yjykqqqk9ibbcmmhx8sqhjzf";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
@ -4,15 +4,15 @@ with rustPlatform;
|
|||||||
|
|
||||||
buildRustPackage rec {
|
buildRustPackage rec {
|
||||||
name = "heatseeker-${version}";
|
name = "heatseeker-${version}";
|
||||||
version = "1.3.0";
|
version = "1.4.0";
|
||||||
|
|
||||||
depsSha256 = "03jap7myf85xgx9270sws8x57nl04a1wx8szrk9qx24s9vnnjcnh";
|
depsSha256 = "1acimdkl6ra9jlyiydzzd6ccdygr5is2xf9gw8i45xzh0xnsq226";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "rschmitt";
|
owner = "rschmitt";
|
||||||
repo = "heatseeker";
|
repo = "heatseeker";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1xdvwgmh9lwv82hv1qg82bjv2iplnvva6lzbg7dyhbszhv7rhkbl";
|
sha256 = "1v2p6l4bdmvn9jggb12p0j5ajjvnbcdjsiavlcqiijz2w8wcdgs8";
|
||||||
};
|
};
|
||||||
|
|
||||||
# some tests require a tty, this variable turns them off for Travis CI,
|
# some tests require a tty, this variable turns them off for Travis CI,
|
||||||
|
Loading…
Reference in New Issue
Block a user