summary refs log blame commit diff
path: root/pkgs/development/libraries/frame/default.nix
blob: 4e8be2a4f5019fc8888d04524481388f3dfb0ec9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
                  
                                                           










                                                                                   
                                                                                            




                                                              
                                                                                             


                                           
 
{ enableX11 ? true
,  stdenv, fetchurl, pkgconfig, xorg, xorgserver, xinput }:

stdenv.mkDerivation rec {
  name = "frame-${version}";
  version = "2.5.0";
  src = fetchurl {
    url = "https://launchpad.net/frame/trunk/v${version}/+download/${name}.tar.xz";
    sha256 = "bc2a20cd3ac1e61fe0461bd3ee8cb250dbcc1fa511fad0686d267744e9c78f3a";
  };

  buildInputs = [ 
    stdenv pkgconfig
  ] ++ stdenv.lib.optionals enableX11 [xorg.xorgserver xorg.libX11 xorg.libXext xorg.libXi];

  configureFlags = stdenv.lib.optional enableX11 "--with-x11";

  meta = {
    homepage = "https://launchpad.net/frame";
    description = "Handles the buildup and synchronization of a set of simultaneous touches";
    license = stdenv.lib.licenses.gpl3;
    platforms = stdenv.lib.platforms.linux;
  };
}