2021-02-07 02:38:11 +03:00
|
|
|
{ stdenv, python3Packages, fetchFromGitHub, pkgs }:
|
2020-08-07 23:27:49 +04:00
|
|
|
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
|
|
name = "advance-touch";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tanrax";
|
|
|
|
repo = "terminal-AdvancedNewFile";
|
|
|
|
rev = "38481017b65e764db240c8ec3b4c8ed6faafabf9";
|
|
|
|
sha256 = "1n4wng4jhmib7zpm7vykprf24rckvh3r1b7sr2navy7ndns6vk3q";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = with python3Packages; [ click ];
|
|
|
|
|
2021-02-07 02:38:11 +03:00
|
|
|
meta = with pkgs.lib; {
|
2020-08-07 23:27:49 +04:00
|
|
|
homepage = "https://github.com/tanrax/terminal-AdvancedNewFile";
|
|
|
|
description = "Add to your terminal the option to quickly create folders and files like a pro";
|
2021-02-07 02:38:11 +03:00
|
|
|
license = licenses.unlicense;
|
|
|
|
maintainers = with maintainers; [ alukardbf ];
|
2020-08-07 23:27:49 +04:00
|
|
|
};
|
|
|
|
}
|