diff --git a/pkgs/default.nix b/pkgs/default.nix index ee8203cf..afe37375 100644 --- a/pkgs/default.nix +++ b/pkgs/default.nix @@ -34,7 +34,6 @@ let }); guile-config = callPackage ./guile-config.nix { }; guile-hall = callPackage ./guile-hall.nix { }; - gnome-info-collect = callPackage ./gnome-info-collect { }; hush-shell = callPackage ./hush-shell.nix { }; ictree = callPackage ./ictree.nix { }; kiwmi = callPackage ./kiwmi { }; diff --git a/pkgs/gnome-info-collect/default.nix b/pkgs/gnome-info-collect/default.nix deleted file mode 100644 index 4019c401..00000000 --- a/pkgs/gnome-info-collect/default.nix +++ /dev/null @@ -1,39 +0,0 @@ -{ lib, fetchFromGitLab, meson, ninja, pkg-config, gobject-introspection, accountsservice, python3Packages }: - -python3Packages.buildPythonApplication rec { - pname = "gnome-info-collect"; - version = "1.0-7"; - - src = fetchFromGitLab { - domain = "gitlab.gnome.org"; - repo = pname; - owner = "vstanek"; - rev = "v${version}"; - sha256 = "sha256-9C1pVCOaGLz0xEd2eKuOQRu49GOLD7LnDYvgxpCgtF4="; - }; - - format = "other"; - - propagatedBuildInputs = with python3Packages; [ - pygobject3 - requests - ] ++ [ - gobject-introspection - ]; - - buildInputs = [ - accountsservice - ]; - - nativeBuildInputs = [ - meson - ninja - pkg-config - ]; - - meta = with lib; { - homepage = "https://gitlab.gnome.org/vstanek/gnome-info-collect"; - description = "Utility to collect and send anonymized information for GNOME"; - license = licenses.gpl3Only; - }; -}