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

32 lines
944 B
Nix
Raw Normal View History

2019-03-08 19:59:12 +01:00
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-03-17 20:20:03 +01:00
pname = "lsd";
version = "0.14.0";
2019-03-08 19:59:12 +01:00
src = fetchFromGitHub {
owner = "Peltoche";
repo = "lsd";
rev = version;
2019-03-17 20:20:03 +01:00
sha256 = "1k054c4mz0z9knfn7kvvs3305z2g2w44l0cjg4k3cax06ic1grlr";
2019-03-08 19:59:12 +01:00
};
cargoSha256 = "0pg4wsk2qaljrqklnl5p3iv83314wmybyxsn1prvsjsl4b64mil9";
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
'';
2019-03-17 20:20:03 +01:00
# Some tests fail, but Travis ensures a proper build
doCheck = false;
2019-03-08 19:59:12 +01:00
meta = with stdenv.lib; {
homepage = https://github.com/Peltoche/lsd;
description = "The next gen ls command";
license = licenses.asl20;
maintainers = [ maintainers.marsam ];
};
}