blob: b4f6e4c2e23b276f3ff4a2a5b39a389f48d27a10 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
{ python3 }:
(python3.withPackages (_: [ python3.pkgs.qtile ])).overrideAttrs (_: {
# restore some qtile attrs, beautify name
inherit (python3.pkgs.qtile) pname version meta;
name = with python3.pkgs.qtile; "${pname}-${version}";
passthru.unwrapped = python3.pkgs.qtile;
})
|