gnome-info-collect: remove package

This commit is contained in:
Gabriel Arazas 2023-06-03 11:27:58 +08:00
parent 1ca789bd86
commit 6e3f5f0576
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 40 deletions

View File

@ -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 { };

View File

@ -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;
};
}