nixpkgs/pkgs/tools/misc/lsd/default.nix

29 lines
869 B
Nix
Raw Normal View History

2019-03-08 13:59:12 -05:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-03-17 14:20:03 -05:00
pname = "lsd";
2020-04-09 12:47:18 +03:00
version = "0.17.0";
2019-03-08 13:59:12 -05:00
src = fetchFromGitHub {
owner = "Peltoche";
2019-05-23 15:13:52 +03:00
repo = pname;
2019-03-08 13:59:12 -05:00
rev = version;
2020-04-09 12:47:18 +03:00
sha256 = "1vyww54fl4yfvszr0dh8ym2jd9gilrccmwkvl7rbx70sfqzsgaai";
2019-03-08 13:59:12 -05:00
};
2020-04-09 12:47:18 +03:00
cargoSha256 = "13g0p6zh2b1z005lszll098d4lv62dzsxwhl76bianzrydif61lr";
2019-03-08 13:59:12 -05:00
preFixup = ''
install -Dm644 -t $out/share/zsh/site-functions/ target/release/build/lsd-*/out/_lsd
install -Dm644 -t $out/share/fish/vendor_completions.d/ target/release/build/lsd-*/out/lsd.fish
install -Dm644 -t $out/share/bash-completion/completions/ target/release/build/lsd-*/out/lsd.bash
'';
meta = with stdenv.lib; {
homepage = https://github.com/Peltoche/lsd;
description = "The next gen ls command";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}