cchat-gtk/shell.nix

20 lines
283 B
Nix
Raw Normal View History

{ unstable ? import <unstable> {} }:
2020-05-26 06:51:06 +00:00
unstable.stdenv.mkDerivation rec {
2020-05-26 06:51:06 +00:00
name = "cchat-gtk";
version = "0.0.2";
buildInputs = with unstable; [
libhandy
gnome3.gspell
gnome3.glib
gnome3.gtk
];
2020-05-26 06:51:06 +00:00
nativeBuildInputs = with unstable; [
pkgconfig
go
wrapGAppsHook
2020-05-26 06:51:06 +00:00
];
}