You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.1 KiB
55 lines
1.1 KiB
{ lib, pkgs, ... }:
|
|
|
|
with pkgs; callPackage python3Packages.buildPythonPackage rec {
|
|
pname = "xborders";
|
|
version = "3.4"; # in version.txt
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ElnuDev";
|
|
repo = "xborder";
|
|
rev = "6a096b4df29e19fee45879c678c33c1a9ada2234";
|
|
sha256 = "sha256-y+Cip5fcDqnJr0aI3jqJMTt6iCV0faunM+Gk6HFZ5iA=";
|
|
};
|
|
|
|
buildInputs = [
|
|
libwnck
|
|
gtk3
|
|
libnotify
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook
|
|
gobject-introspection
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
pycairo
|
|
requests
|
|
pygobject3
|
|
];
|
|
|
|
preBuild = ''
|
|
cat >setup.py <<'EOF'
|
|
from setuptools import setup
|
|
setup(
|
|
name='${pname}',
|
|
version='${version}',
|
|
author='deter0',
|
|
description='${meta.description}',
|
|
install_requires=['pycairo', 'requests', 'PyGObject'],
|
|
scripts=[
|
|
'xborders',
|
|
],
|
|
)
|
|
EOF
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Active window border replacement for window managers.";
|
|
homepage = "https://github.com/deter0/xborder";
|
|
license = licenses.unlicense;
|
|
maintainers = with maintainers; [ elnudev ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|