Compare commits
2 commits
fb7dd4a4ee
...
7ce34e7460
Author | SHA1 | Date | |
---|---|---|---|
7ce34e7460 | |||
467792271e |
1 changed files with 24 additions and 9 deletions
|
@ -3,18 +3,32 @@
|
||||||
with pkgs; callPackage python3Packages.buildPythonPackage rec {
|
with pkgs; callPackage python3Packages.buildPythonPackage rec {
|
||||||
pname = "xborders";
|
pname = "xborders";
|
||||||
version = "3.4"; # in version.txt
|
version = "3.4"; # in version.txt
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "deter0";
|
owner = "ElnuDev";
|
||||||
repo = "xborder";
|
repo = "xborder";
|
||||||
rev = "d840ed649e92b7ad399cdb1a30aeca7d09f2c08f";
|
rev = "6a096b4df29e19fee45879c678c33c1a9ada2234";
|
||||||
sha256 = "sha256-Q2WWXekUL/OOr/OBqJOZbAHaWURbP+coBVp206uPSNY=";
|
sha256 = "sha256-y+Cip5fcDqnJr0aI3jqJMTt6iCV0faunM+Gk6HFZ5iA=";
|
||||||
};
|
};
|
||||||
buildInputs = [ libwnck gtk3 libnotify ];
|
|
||||||
nativeBuildInputs = [ wrapGAppsHook gobject-introspection ];
|
buildInputs = [
|
||||||
propagatedBuildInputs = with python3Packages; [ pycairo requests pygobject3 ];
|
libwnck
|
||||||
|
gtk3
|
||||||
|
libnotify
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
wrapGAppsHook
|
||||||
|
gobject-introspection
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [
|
||||||
|
pycairo
|
||||||
|
requests
|
||||||
|
pygobject3
|
||||||
|
];
|
||||||
|
|
||||||
preBuild = ''
|
preBuild = ''
|
||||||
sed '52,58!d' ${pname}
|
|
||||||
sed -i '51 a\ return ${version}' ${pname}
|
|
||||||
cat >setup.py <<'EOF'
|
cat >setup.py <<'EOF'
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
setup(
|
setup(
|
||||||
|
@ -24,11 +38,12 @@ with pkgs; callPackage python3Packages.buildPythonPackage rec {
|
||||||
description='${meta.description}',
|
description='${meta.description}',
|
||||||
install_requires=['pycairo', 'requests', 'PyGObject'],
|
install_requires=['pycairo', 'requests', 'PyGObject'],
|
||||||
scripts=[
|
scripts=[
|
||||||
'${pname}',
|
'xborders',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
EOF
|
EOF
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Active window border replacement for window managers.";
|
description = "Active window border replacement for window managers.";
|
||||||
homepage = "https://github.com/deter0/xborder";
|
homepage = "https://github.com/deter0/xborder";
|
||||||
|
|
Loading…
Add table
Reference in a new issue