mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-07 15:14:29 +00:00
20 lines
283 B
Nix
20 lines
283 B
Nix
{ unstable ? import <unstable> {} }:
|
|
|
|
unstable.stdenv.mkDerivation rec {
|
|
name = "cchat-gtk";
|
|
version = "0.0.2";
|
|
|
|
buildInputs = with unstable; [
|
|
libhandy
|
|
gnome3.gspell
|
|
gnome3.glib
|
|
gnome3.gtk
|
|
];
|
|
|
|
nativeBuildInputs = with unstable; [
|
|
pkgconfig
|
|
go
|
|
wrapGAppsHook
|
|
];
|
|
}
|