Remove natls

Fixes #13
This commit is contained in:
Harsh Shandilya 2021-10-01 20:13:30 +05:30
parent d170ed14b0
commit 6762780dce
No known key found for this signature in database
GPG Key ID: 366D7BBAD1031E80
3 changed files with 0 additions and 25 deletions

View File

@ -13,7 +13,6 @@ Included packages:
- [hcctl]: CLI to look up the status of checks on https://healthchecks.io
- [healthchecks-monitor]: CLI tool to run commands and report its result to https://healthchecks.io
- [jetbrains-mono-nerdfonts] : Packaging of the [nerd-fonts] variant of [JetBrains' JetBrains Mono] typeface
- [natls]: `ls` alternative with useful info and a splash of color art
- [pidcat] : Fork of [JakeWharton's pidcat] with Python3 support and some other fixes
[adb-sync]: https://msfjarvis.dev/g/adb-sync
@ -27,7 +26,6 @@ Included packages:
[jetbrains-mono-nerdfonts]: https://github.com/ryanoasis/nerd-fonts
[nerd-fonts]: https://github.com/ryanoasis/nerd-fonts
[Jetbrains' JetBrains Mono]: https://github.com/JetBrains/JetBrainsMono
[natls]: https://github.com/willdoescode/nat
[pidcat]: https://msfjarvis.dev/g/pidcat
[JakeWharton's pidcat]: https://github.com/JakeWharton/pidcat
[hcctl]: https://msfjarvis.dev/g/healthchecks-rs

View File

@ -15,6 +15,5 @@ with pkgs; {
healthchecks-monitor = callPackage ./pkgs/healthchecks-monitor { };
jetbrains-mono-nerdfonts =
callPackage ./pkgs/jetbrains-mono-nerdfonts { };
natls = callPackage ./pkgs/natls { };
pidcat = callPackage ./pkgs/pidcat { };
}

View File

@ -1,22 +0,0 @@
{ lib, fetchFromGitHub, rustPlatform, pkgs ? import <nixpkgs> { } }:
rustPlatform.buildRustPackage rec {
pname = "natls";
version = "2.1.14";
src = fetchFromGitHub {
owner = "willdoescode";
repo = "nat";
rev = "v${version}";
sha256 = "0629nfcf43pzkx1rp6k1nr5sdpsjsgrs21f8yc7g20kxlnppc7z3";
};
cargoSha256 = "022wad6d2qm515m7v8qx1cgilxygg63mlqlxfaql5cm1z6chfvh2";
meta = with pkgs.lib; {
description = "the 'ls' replacement you never knew you needed";
homepage = "https://github.com/willdoescode/nat";
license = licenses.mit;
platforms = platforms.all;
};
}