nixpkgs/pkgs/shells/nsh/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

31 lines
777 B
Nix

{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "nsh";
version = "0.4.2";
src = fetchFromGitHub {
owner = "nuta";
repo = pname;
rev = "v${version}";
sha256 = "1479wv8h5l2b0cwp27vpybq50nyvszhjxmn76n2bz3fchr0lrcbp";
};
cargoSha256 = "1kxjr4ymns95g6jz94107nqmd71m2xh8k19gcsy08650gjrn5cz3";
doCheck = false;
meta = with lib; {
description = "Command-line shell like fish, but POSIX compatible";
mainProgram = "nsh";
homepage = "https://github.com/nuta/nsh";
changelog = "https://github.com/nuta/nsh/raw/v${version}/docs/changelog.md";
license = [ licenses.cc0 /* or */ licenses.mit ];
maintainers = with maintainers; [ cafkafk ];
};
passthru = {
shellPath = "/bin/nsh";
};
}