mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 09:23:01 +00:00
natls: init at 2.1.14
This commit is contained in:
parent
262cc3f6d9
commit
8a19707fc4
25
pkgs/tools/misc/natls/default.nix
Normal file
25
pkgs/tools/misc/natls/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "natls";
|
||||
version = "2.1.14";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "willdoescode";
|
||||
repo = "nat";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-4x92r6V9AvEO88gFofPTUt+mS7ZhmptDn/8O4pizSRg=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-Am4HmfmhskKxcp1iWod5z3caHwsdo31qCaVi0UxTXAg=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "the 'ls' replacement you never knew you needed";
|
||||
homepage = "https://github.com/willdoescode/nat";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ msfjarvis ];
|
||||
};
|
||||
}
|
@ -1040,6 +1040,8 @@ with pkgs;
|
||||
|
||||
mrxvt = callPackage ../applications/terminal-emulators/mrxvt { };
|
||||
|
||||
natls = callPackage ../tools/misc/natls { };
|
||||
|
||||
nimmm = callPackage ../applications/terminal-emulators/nimmm { };
|
||||
|
||||
pikchr = callPackage ../tools/graphics/pikchr { };
|
||||
|
Loading…
Reference in New Issue
Block a user