Merge pull request #148910 from rasendubi/escrotum-2020-12-07
escrotum: 2019-06-10 -> 2020-12-07
This commit is contained in:
commit
33e333e2a6
1 changed files with 23 additions and 6 deletions
|
@ -1,18 +1,35 @@
|
||||||
{ lib, python2Packages, fetchFromGitHub
|
{ lib, python3Packages, fetchFromGitHub
|
||||||
|
, gtk3
|
||||||
|
, pango
|
||||||
|
, gobject-introspection
|
||||||
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with python2Packages; buildPythonApplication {
|
with python3Packages; buildPythonApplication {
|
||||||
pname = "escrotum";
|
pname = "escrotum";
|
||||||
version = "unstable-2019-06-10";
|
version = "unstable-2020-12-07";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Roger";
|
owner = "Roger";
|
||||||
repo = "escrotum";
|
repo = "escrotum";
|
||||||
rev = "f6c300315cb4402e37f16b56aad2d206e24c5281";
|
rev = "a41d0f11bb6af4f08e724b8ccddf8513d905c0d1";
|
||||||
sha256 = "0x7za74lkwn3v6j9j04ifgdwdlx9akh1izkw7vkkzj9ag9qjrzb0";
|
sha256 = "sha256-z0AyTbOEE60j/883X17mxgoaVlryNtn0dfEB0C18G2s=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ pygtk numpy ];
|
buildInputs = [
|
||||||
|
gtk3
|
||||||
|
pango
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
gobject-introspection
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pygobject3 xcffib pycairo numpy ];
|
||||||
|
|
||||||
|
# Cannot find pango without strictDeps = false
|
||||||
|
strictDeps = false;
|
||||||
|
|
||||||
outputs = [ "out" "man" ];
|
outputs = [ "out" "man" ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue