mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
catcli: init at 0.5.13
This commit is contained in:
parent
1f5a97bcef
commit
aa84e476da
2 changed files with 32 additions and 0 deletions
30
pkgs/tools/filesystems/catcli/default.nix
Normal file
30
pkgs/tools/filesystems/catcli/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv
|
||||
, fetchFromGitHub
|
||||
, buildPythonApplication
|
||||
, docopt, anytree
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
|
||||
pname = "catcli";
|
||||
version = "0.5.13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "deadc0de6";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "04mrkqmm2c8fhi1h1hddc4yh3dqhcvkmcwzhj0ggn34v7wavgb5i";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ docopt anytree ];
|
||||
|
||||
postPatch = '' patchShebangs . '';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "The command line catalog tool for your offline data";
|
||||
homepage = "https://github.com/deadc0de6/catcli";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ petersjt014 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -830,6 +830,8 @@ in
|
|||
|
||||
certigo = callPackage ../tools/admin/certigo { };
|
||||
|
||||
catcli = python3Packages.callPackage ../tools/filesystems/catcli { };
|
||||
|
||||
chezmoi = callPackage ../tools/misc/chezmoi { };
|
||||
|
||||
chipsec = callPackage ../tools/security/chipsec {
|
||||
|
|
Loading…
Reference in a new issue