mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 06:31:20 +00:00
Merge pull request #84078 from petersjt014/master
catcli: init at 0.5.13
This commit is contained in:
commit
529465d171
@ -5771,6 +5771,12 @@
|
|||||||
githubId = 5515707;
|
githubId = 5515707;
|
||||||
name = "Peter Romfeld";
|
name = "Peter Romfeld";
|
||||||
};
|
};
|
||||||
|
petersjt014 = {
|
||||||
|
email = "petersjt014@gmail.com";
|
||||||
|
github = "petersjt014";
|
||||||
|
githubId = 29493551;
|
||||||
|
name = "Josh Peters";
|
||||||
|
};
|
||||||
peti = {
|
peti = {
|
||||||
email = "simons@cryp.to";
|
email = "simons@cryp.to";
|
||||||
github = "peti";
|
github = "peti";
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -828,6 +828,8 @@ in
|
|||||||
|
|
||||||
certigo = callPackage ../tools/admin/certigo { };
|
certigo = callPackage ../tools/admin/certigo { };
|
||||||
|
|
||||||
|
catcli = python3Packages.callPackage ../tools/filesystems/catcli { };
|
||||||
|
|
||||||
chezmoi = callPackage ../tools/misc/chezmoi { };
|
chezmoi = callPackage ../tools/misc/chezmoi { };
|
||||||
|
|
||||||
chipsec = callPackage ../tools/security/chipsec {
|
chipsec = callPackage ../tools/security/chipsec {
|
||||||
|
Loading…
Reference in New Issue
Block a user