Unverified Commit 7a542bd2 authored by Emily's avatar Emily Committed by GitHub
Browse files

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

ictree: init at 1.0.1
parents ffaadc7b 5d8252e5
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ 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 ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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 { };