ictree: remove package

It is now upstreamed at nixpkgs. Even though it's not yet in effect for
the nixos-unstable branch, we'll still remove it. Since the update for
this project will occur sometime in the next few days which should be
enough.
This commit is contained in:
Gabriel Arazas 2023-07-21 13:12:39 +08:00
parent 2b87602a67
commit 562d3ea5fa
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 22 deletions

View File

@ -17,7 +17,6 @@ let
gnome-search-provider-recoll =
callPackage ./gnome-search-provider-recoll.nix { };
hush-shell = callPackage ./hush-shell.nix { };
ictree = callPackage ./ictree.nix { };
kiwmi = callPackage ./kiwmi { };
lwp = callPackage ./lwp { };
moac = callPackage ./moac.nix { };

View File

@ -1,21 +0,0 @@
{ stdenv, lib, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "ictree";
version = "1.0.1";
src = fetchFromGitHub {
owner = "NikitaIvanovV";
repo = pname;
rev = "v${version}";
sha256 = "sha256-77Wo6jN8VUGTXBuGL0a9kvSIixdyEQoxqqNsHq9jcWw=";
fetchSubmodules = true;
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Like 'tree' but interactive";
homepage = "https://github.com/NikitaIvanovV/ictree";
};
}