Merge pull request #243797 from foo-dogsquared/add-ictree

ictree: init at 1.0.1
This commit is contained in:
Emily 2023-07-20 14:58:27 +02:00 committed by GitHub
commit 7a542bd218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -5451,6 +5451,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 { };