Merge pull request #68819 from jonringer/mark-percol-broken
pythonPackages.percol: mark broken
This commit is contained in:
commit
b46c3c5554
|
@ -1,7 +1,5 @@
|
||||||
{ stdenv
|
{ lib, buildPythonPackage, fetchPypi, isPy3k
|
||||||
, buildPythonPackage
|
, six
|
||||||
, fetchPypi
|
|
||||||
, isPy3k
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
|
@ -14,11 +12,14 @@ buildPythonPackage rec {
|
||||||
sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8";
|
sha256 = "7a649c6fae61635519d12a6bcacc742241aad1bff3230baef2cedd693ed9cfe8";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
propagatedBuildInputs = [ six ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
homepage = https://github.com/mooz/percol;
|
homepage = https://github.com/mooz/percol;
|
||||||
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
|
description = "Adds flavor of interactive filtering to the traditional pipe concept of shell";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = with maintainers; [ koral ];
|
maintainers = with maintainers; [ koral ];
|
||||||
|
broken = true; # missing cmigemo package which is missing libmigemo.so
|
||||||
|
# also doesn't support python3
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue