mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
gnome-info-collect: init at 1.0-7
This commit is contained in:
parent
6cb1515d91
commit
cb4b56d187
@ -28,6 +28,7 @@ let
|
|||||||
gradience = callPackage ./gradience { libadwaita = libadwaita-latest; };
|
gradience = callPackage ./gradience { libadwaita = libadwaita-latest; };
|
||||||
guile-config = callPackage ./guile-config.nix { };
|
guile-config = callPackage ./guile-config.nix { };
|
||||||
guile-hall = callPackage ./guile-hall.nix { };
|
guile-hall = callPackage ./guile-hall.nix { };
|
||||||
|
gnome-info-collect = callPackage ./gnome-info-collect { };
|
||||||
hush-shell = callPackage ./hush-shell.nix { };
|
hush-shell = callPackage ./hush-shell.nix { };
|
||||||
ictree = callPackage ./ictree.nix { };
|
ictree = callPackage ./ictree.nix { };
|
||||||
libadwaita-latest = libadwaita.overrideAttrs (super: self: {
|
libadwaita-latest = libadwaita.overrideAttrs (super: self: {
|
||||||
|
39
pkgs/gnome-info-collect/default.nix
Normal file
39
pkgs/gnome-info-collect/default.nix
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
{ 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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user