exa: 0.10.0 -> 0.10.1
This commit is contained in:
parent
7289645071
commit
940f476eb1
@ -4,17 +4,20 @@
|
|||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "exa";
|
pname = "exa";
|
||||||
version = "0.10.0";
|
version = "0.10.1";
|
||||||
|
|
||||||
cargoSha256 = "sha256-hslQZkmZ023gKxBbfgwqazBPUk0qWyy51uRJtr3QvWE=";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "ogham";
|
owner = "ogham";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-xolanu4zhAwsbSPdGKgY2/uHtP30DSpr/7Vv1z4jEnQ=";
|
sha256 = "sha256-vChsy/FrJEzTO5O+XFycPMP3jqOeea/hfsC0jJbqUVI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Cargo.lock is outdated
|
||||||
|
cargoPatches = [ ./update-cargo-lock.diff ];
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-ah8IjShmivS6IWL3ku/4/j+WNr/LdUnh1YJnPdaFdcM=";
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
|
nativeBuildInputs = [ cmake pkg-config installShellFiles pandoc ];
|
||||||
buildInputs = [ zlib ]
|
buildInputs = [ zlib ]
|
||||||
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
++ lib.optionals stdenv.isDarwin [ libiconv Security ];
|
||||||
@ -44,6 +47,7 @@ rustPlatform.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 it’s small, fast, and portable.
|
written in Rust, so it’s small, fast, and portable.
|
||||||
'';
|
'';
|
||||||
|
changelog = "https://github.com/ogham/exa/releases/tag/v${version}";
|
||||||
homepage = "https://the.exa.website";
|
homepage = "https://the.exa.website";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ ehegnes lilyball globin fortuneteller2k ];
|
maintainers = with maintainers; [ ehegnes lilyball globin fortuneteller2k ];
|
||||||
|
13
pkgs/tools/misc/exa/update-cargo-lock.diff
Normal file
13
pkgs/tools/misc/exa/update-cargo-lock.diff
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
diff --git a/Cargo.lock b/Cargo.lock
|
||||||
|
index df94188..ed3a068 100644
|
||||||
|
--- a/Cargo.lock
|
||||||
|
+++ b/Cargo.lock
|
||||||
|
@@ -57,7 +57,7 @@ dependencies = [
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "exa"
|
||||||
|
-version = "0.11.0-pre"
|
||||||
|
+version = "0.10.1"
|
||||||
|
dependencies = [
|
||||||
|
"ansi_term",
|
||||||
|
"datetime",
|
Loading…
Reference in New Issue
Block a user