exa: 2017-04-02 -> 0.6.0

This commit is contained in:
Robin Stumm 2017-06-13 15:27:51 +02:00 committed by Franz Pletz
parent b83609add3
commit 9079f94df7

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, rustPlatform, openssl, cmake, perl, pkgconfig, zlib }: { stdenv, fetchFromGitHub, rustPlatform, cmake, perl, pkgconfig, zlib }:
with rustPlatform; with rustPlatform;
@ -12,31 +12,28 @@ let
}; };
cargoPatch = '' cargoPatch = ''
# use non-git dependencies # use non-git dependencies
patch -p1 <<EOF patch Cargo.toml <<EOF
--- exa-v0.4.1-src.org/Cargo.toml 1970-01-01 01:00:01.000000000 +0100 46c46
+++ exa-v0.4.1-src/Cargo.toml 2017-04-04 10:33:31.554377034 +0200 < git = "https://github.com/rust-datetime/zoneinfo-compiled.git"
@@ -42,4 +42,4 @@ ---
optional = true > path = "${zoneinfo_compiled}"
EOF
[dependencies.zoneinfo_compiled]
-git = "https://github.com/rust-datetime/zoneinfo-compiled.git"
+path = "${zoneinfo_compiled}"
EOF
''; '';
in buildRustPackage rec { in buildRustPackage rec {
name = "exa-unstable-2017-04-02"; name = "exa-${version}";
version = "0.6.0";
depsSha256 = "0szjba03q4iwzjzb2dp39hhz554ys4z11qdhcdq1mgxqk94scjf4"; depsSha256 = "0c1vyl1c67xq18ss0xs5cjdfn892jpwj6ml51dfppzfyns3namm4";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "ogham"; owner = "ogham";
repo = "exa"; repo = "exa";
rev = "1a6066327d2643881996946942aba530e8a1c67c"; rev = "v${version}";
sha256 = "1xrsg3zw5d3sw2bwx8g0lrs6zpk8rdrvvnknf7c9drp7rplmd8zq"; sha256 = "0065gj4pbbppbnwp23s6bb7zlz428nrir00d0kz7axydxk6swhyv";
}; };
nativeBuildInputs = [ cmake pkgconfig perl ]; nativeBuildInputs = [ cmake pkgconfig perl ];
buildInputs = [ openssl zlib ]; buildInputs = [ zlib ];
# Some tests fail, but Travis ensures a proper build # Some tests fail, but Travis ensures a proper build
doCheck = false; doCheck = false;
@ -60,7 +57,7 @@ in buildRustPackage rec {
for a directory, or recursing into directories with a tree view. exa is for a directory, or recursing into directories with a tree view. exa is
written in Rust, so its small, fast, and portable. written in Rust, so its small, fast, and portable.
''; '';
homepage = http://bsago.me/exa; homepage = http://the.exa.website;
license = licenses.mit; license = licenses.mit;
maintainer = [ maintainers.ehegnes ]; maintainer = [ maintainers.ehegnes ];
}; };