cchat-gtk/shell.nix

22 lines
318 B
Nix
Raw Normal View History

2020-05-26 06:51:06 +00:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.stdenv.mkDerivation rec {
2020-05-26 06:51:06 +00:00
name = "cchat-gtk";
version = "0.0.2";
buildInputs = [
pkgs.libhandy
2021-01-07 04:10:53 +00:00
pkgs.gnome3.gspell
pkgs.gnome3.glib
pkgs.gnome3.gtk
];
2020-05-26 06:51:06 +00:00
nativeBuildInputs = with pkgs; [
pkgconfig go
];
# Debug flags.
CGO_CFLAGS = "-g";
CGO_CXXFLAGS = "-g";
2020-05-26 06:51:06 +00:00
}