Merge staging-next into staging
This commit is contained in:
@@ -33,6 +33,8 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A tool for automating interactive applications";
|
||||
homepage = "http://expect.sourceforge.net/";
|
||||
|
||||
@@ -1,18 +1,17 @@
|
||||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
{ lib, buildPythonPackage, fetchPypi , setuptools, pytestCheckHook }:
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "lice";
|
||||
version = "0.6";
|
||||
|
||||
version = "0.4";
|
||||
name = "lice-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "licenses";
|
||||
repo = "lice";
|
||||
rev = version;
|
||||
sha256 = "0yxf70fi8ds3hmwjply2815k466r99k8n22r0ppfhwjvp3rn60qx";
|
||||
fetchSubmodules = true;
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0skyyirbidknfdzdvsjga8zb4ar6xpd5ilvz11dfm2a9yxh3d59d";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ setuptools ];
|
||||
|
||||
checkInputs = [ pytestCheckHook ];
|
||||
meta = with lib; {
|
||||
description = "Print license based on selection and user options";
|
||||
homepage = "https://github.com/licenses/lice";
|
||||
|
||||
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
|
||||
substituteInPlace src/parallel --subst-var-by coreutils ${coreutils}
|
||||
'';
|
||||
|
||||
outputs = [ "out" "man" ];
|
||||
outputs = [ "out" "man" "doc" ];
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
buildInputs = [ perl procps ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, fetchFromGitHub, fetchpatch, python3Packages }:
|
||||
{ lib, fetchFromGitHub, python3Packages }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "pubs";
|
||||
|
||||
@@ -11,8 +11,6 @@
|
||||
, qtgraphicaleffects
|
||||
, qtquickcontrols
|
||||
, qtquickcontrols2
|
||||
, qtdeclarative
|
||||
, qtsvg
|
||||
, yubikey-manager
|
||||
, yubikey-personalization
|
||||
}:
|
||||
|
||||
Reference in New Issue
Block a user