lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 32 lines 886 B view raw
1{ stdenv, fetchurl, alsaLib, libX11, makeWrapper, tcl, tk }: 2 3stdenv.mkDerivation rec { 4 name = "vkeybd-${version}"; 5 version = "0.1.18d"; 6 7 src = fetchurl { 8 url = "ftp://ftp.suse.com/pub/people/tiwai/vkeybd/${name}.tar.bz2"; 9 sha256 = "0107b5j1gf7dwp7qb4w2snj4bqiyps53d66qzl2rwj4jfpakws5a"; 10 }; 11 12 buildInputs = [ alsaLib libX11 makeWrapper tcl tk ]; 13 14 configurePhase = '' 15 mkdir -p $out/bin 16 sed -e "s@/usr/local@$out@" -i Makefile 17 ''; 18 19 makeFlags = [ "TKLIB=-l${tk.libPrefix}" "TCLLIB=-l${tcl.libPrefix}" ]; 20 21 postInstall = '' 22 wrapProgram $out/bin/vkeybd --set TK_LIBRARY "${tk}/lib/${tk.libPrefix}" 23 ''; 24 25 meta = with stdenv.lib; { 26 description = "Virtual MIDI keyboard"; 27 homepage = http://www.alsa-project.org/~tiwai/alsa.html; 28 license = licenses.gpl2Plus; 29 platforms = platforms.linux; 30 maintainers = [ maintainers.goibhniu ]; 31 }; 32}