1
0
Fork 0
mirror of https://github.com/diamondburned/cchat-gtk.git synced 2024-09-07 18:56:21 +00:00
cchat-gtk/shell.nix
diamondburned f5ba082b86 Slight Gtk fixes and improvements
This commit uses the GtkFileChooserNative over Gtk's own. It also
slightly refactors the message container API and fixes minor UI
appearances, especially adding the separator.
2020-11-05 11:08:30 -08:00

29 lines
573 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let libhandy = pkgs.libhandy.overrideAttrs(old: {
name = "libhandy-1.0.1";
src = builtins.fetchGit {
url = "https://gitlab.gnome.org/GNOME/libhandy.git";
rev = "5cee0927b8b39dea1b2a62ec6d19169f73ba06c6";
};
patches = [];
buildInputs = old.buildInputs ++ (with pkgs; [
gnome3.librsvg
gdk-pixbuf
]);
});
in pkgs.stdenv.mkDerivation rec {
name = "cchat-gtk";
version = "0.0.2";
buildInputs = [ libhandy ] ++ (with pkgs; [
gnome3.gspell gnome3.glib gnome3.gtk
]);
nativeBuildInputs = with pkgs; [
pkgconfig go
];
}