mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
ictree: init at 0.2.2
This commit is contained in:
parent
c753ff5294
commit
0b9ef8d996
@ -46,6 +46,7 @@ let
|
||||
callPackage ./gnome-shell-extension-pop-shell.nix { };
|
||||
guile-config = callPackage ./guile-config.nix { };
|
||||
guile-hall = callPackage ./guile-hall.nix { };
|
||||
ictree = callPackage ./ictree.nix { };
|
||||
junction = callPackage ./junction.nix { };
|
||||
libcs50 = callPackage ./libcs50.nix { };
|
||||
mopidy-beets = callPackage ./mopidy-beets.nix { };
|
||||
|
23
pkgs/ictree.nix
Normal file
23
pkgs/ictree.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ictree";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "NikitaIvanovV";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-QDvAdNnc9+5GU6Rch/TDLs11O4dJrjDGskLzpTw7rbk=";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
makeFlags = [
|
||||
"PREFIX=$(out)"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Like 'tree' but interactive";
|
||||
homepage = "https://github.com/NikitaIvanovV/ictree";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user