mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
ictree: init at 1.0.1
This commit is contained in:
parent
16702dc540
commit
5d8252e51f
23
pkgs/tools/misc/ictree/default.nix
Normal file
23
pkgs/tools/misc/ictree/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user