mirror of
https://github.com/diamondburned/cchat-gtk.git
synced 2024-11-01 03:54:16 +00:00
15 lines
230 B
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
|
||
|
];
|
||
|
}
|