1
0
Fork 0
mirror of https://github.com/diamondburned/cchat-gtk.git synced 2024-09-19 00:19:17 +00:00
cchat-gtk/shell.nix

15 lines
230 B
Nix

{ 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
];
}