mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #27783 from 8573/8573/pkg/add/rust/fd-sharkdp/1
fd: init at 2.0.0
This commit is contained in:
commit
22f380c5f9
2 changed files with 30 additions and 0 deletions
28
pkgs/tools/misc/fd/default.nix
Normal file
28
pkgs/tools/misc/fd/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
name = "fd-${version}";
|
||||||
|
version = "2.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sharkdp";
|
||||||
|
repo = "fd";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1xs4y9zf5m0ykl95787jv98xg0a60gkcyyh7kg7qg4xrcgf4qz4j";
|
||||||
|
};
|
||||||
|
|
||||||
|
depsSha256 = "1hxf3j4584jgpwrwykx6yil6q6ka9l81qvx6zrbprdxk3pslp049";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A simple, fast and user-friendly alternative to find";
|
||||||
|
longDescription = ''
|
||||||
|
`fd` is a simple, fast and user-friendly alternative to `find`.
|
||||||
|
|
||||||
|
While it does not seek to mirror all of `find`'s powerful functionality,
|
||||||
|
it provides sensible (opinionated) defaults for 80% of the use cases.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/sharkdp/fd";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1011,6 +1011,8 @@ with pkgs;
|
||||||
buildInputs = old.buildInputs ++ [phantomjs2];
|
buildInputs = old.buildInputs ++ [phantomjs2];
|
||||||
});
|
});
|
||||||
|
|
||||||
|
fd = callPackage ../tools/misc/fd { };
|
||||||
|
|
||||||
filebench = callPackage ../tools/misc/filebench { };
|
filebench = callPackage ../tools/misc/filebench { };
|
||||||
|
|
||||||
fsmon = callPackage ../tools/misc/fsmon { };
|
fsmon = callPackage ../tools/misc/fsmon { };
|
||||||
|
|
Loading…
Reference in a new issue