touchpage 0.2.2

control panel server with shared-state web controls
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, openssl }:

stdenv.mkDerivation rec {
  name = "meh-1.0";
  version = "1.0";
  rev = "1";
  src = ".";
  buildInputs = [openssl];
  meta = with stdenv.lib; {
    description = "An interactive Gtk canvas widget for graph-based interfaces";
    homepage = http://drobilla.net;
    license = licenses.gpl3;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}