gtkcord4: init at 0.0.6

Fixes #96936
This commit is contained in:
Colin Arnott 2022-11-08 08:58:58 +00:00
parent 5bb01fc844
commit a1e435e0ee
No known key found for this signature in database
GPG key ID: 0447A663F7F3E236
2 changed files with 49 additions and 0 deletions

View file

@ -0,0 +1,47 @@
{ buildGoModule
, cairo
, fetchFromGitHub
, gdk-pixbuf
, glib
, gobject-introspection
, graphene
, gtk4
, lib
, pango
, pkg-config
}:
buildGoModule rec {
pname = "gtkcord4";
version = "0.0.6";
src = fetchFromGitHub {
owner = "diamondburned";
repo = pname;
rev = "v${version}";
hash = "sha256-uEG1pAHMQT+C/E5rKByflvL0NNkC8SeSPMAXanzvhE4=";
};
nativeBuildInputs = [
gobject-introspection
pkg-config
];
buildInputs = [
cairo
gdk-pixbuf
glib
graphene
gtk4
pango
];
vendorHash = "sha256-QZSjSk1xu5ZcrNEra5TxnUVvlQWb5/h31fm5Nc7WMoI=";
meta = with lib; {
description = "GTK4 Discord client in Go, attempt #4.";
homepage = "https://github.com/diamondburned/gtkcord4";
license = licenses.gpl3Only;
maintainers = with maintainers; [ urandom ];
};
}

View file

@ -28325,6 +28325,8 @@ with pkgs;
gspeech = callPackage ../applications/audio/gspeech { };
gtkcord4 = callPackage ../applications/audio/gtkcord4 {};
haruna = libsForQt5.callPackage ../applications/video/haruna { };
hdrmerge = libsForQt5.callPackage ../applications/graphics/hdrmerge { };