ictree: init at 1.0.1

This commit is contained in:
Gabriel Arazas 2023-07-16 20:32:28 +08:00
parent 16702dc540
commit 5d8252e51f
2 changed files with 25 additions and 0 deletions

View file

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

View file

@ -5422,6 +5422,8 @@ with pkgs;
icdiff = callPackage ../tools/text/icdiff { };
ictree = callPackage ../tools/misc/ictree { };
inchi = callPackage ../development/libraries/inchi { };
icon-slicer = callPackage ../tools/X11/icon-slicer { };