94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
8 lines
283 B
Nix
8 lines
283 B
Nix
{ 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;
|
|
})
|