Merge master into staging-next

This commit is contained in:
github-actions[bot]
2021-02-10 18:16:36 +00:00
committed by GitHub
45 changed files with 612 additions and 283 deletions
+6 -5
View File
@@ -2,20 +2,21 @@
buildGoPackage rec {
pname = "lnch";
version = "2017-02-16";
version = "unstable-2021-02-10";
goPackagePath = "github.com/oem/${pname}";
src = fetchFromGitHub {
owner = "oem";
repo = pname;
rev = "f24eed5392f01d2c8a9cfe9cdf70dcfbbf4b6b36";
sha256 = "0skzrjnbxq1yj7y64cq7angp4wqnrgw1xp9v8vw9zp8f8zwmpy0y";
rev = "6ed336dd893afa071178b8ac6f6297d23fc55514";
sha256 = "K2TV+mx6C3/REJyDpC6a/Zn/ZZFxkDMC3EnkveH6YNQ=";
};
meta = with lib; {
homepage = "https://github.com/oem/lnch";
description = "A small go app that launches a process and moves it out of the process group";
license = licenses.publicDomain; # really I don't know
description = "Launches a process and moves it out of the process group";
license = licenses.mit;
platforms = with platforms; all;
};
}
+24
View File
@@ -0,0 +1,24 @@
{ lib, python3Packages }:
python3Packages.buildPythonPackage rec {
pname = "piston-cli";
version = "1.2.1";
src = python3Packages.fetchPypi {
inherit pname version;
sha256 = "bf0hhKb+6+07HhrkFrsWCnUQfsQWOdK/dPTlt9iZTno=";
};
propagatedBuildInputs = with python3Packages; [ rich prompt_toolkit requests pygments ];
checkPhase = ''
$out/bin/piston --help > /dev/null
'';
meta = with lib; {
description = "Piston api tool";
homepage = "https://github.com/Shivansh-007/piston-cli";
license = licenses.mit;
maintainers = with maintainers; [ ethancedwards8 ];
};
}