cchat-gtk/shell.nix

15 lines
230 B
Nix
Raw Normal View History

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