2 pkgs ? import <nixpkgs> { },
5 pkgs.python3Packages.callPackage (
19 buildPythonPackage rec {
23 src = lib.cleanSource ./.;
26 build-system = [ setuptools ];
29 checkPhase = "./test.sh";
38 ++ lib.optionals lint [
42 buildInputs = [ gtk4 ];
43 pythonPath = [ pygobject3 ];
46 cp -r $desktopItem/share $out
49 desktopItem = makeDesktopItem {
53 comment = "Configure nix-env Apps";
55 genericName = "Configure Apps";
56 categories = [ "Settings" ];
60 description = "A simple GUI for managing declarative nix-env user environments";
61 homepage = "https://git.scottworley.com/nix-env-apps";
62 license = pkgs.lib.licenses.gpl3;
63 maintainers = with pkgs.lib.maintainers; [ chkno ];