lol
fork

Configure Feed

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

at v206 25 lines 842 B view raw
1{ stdenv, fetchurl, pkgconfig, pure, pure-ffi, gtk2 }: 2 3stdenv.mkDerivation rec { 4 baseName = "gtk"; 5 version = "0.13"; 6 name = "pure-${baseName}-${version}"; 7 8 src = fetchurl { 9 url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz"; 10 sha256 = "e659ff1bc5809ce35b810f8ac3fb7e8cadaaef13996537d8632e2f86ed76d203"; 11 }; 12 13 buildInputs = [ pkgconfig ]; 14 propagatedBuildInputs = [ pure pure-ffi gtk2 ]; 15 makeFlags = "libdir=$(out)/lib prefix=$(out)/"; 16 setupHook = ../generic-setup-hook.sh; 17 18 meta = { 19 description = "A collection of bindings to use the GTK+ GUI toolkit version 2.x with Pure"; 20 homepage = http://puredocs.bitbucket.org/pure-gtk.html; 21 license = stdenv.lib.licenses.lgpl3Plus; 22 platforms = stdenv.lib.platforms.linux; 23 maintainers = with stdenv.lib.maintainers; [ asppsa ]; 24 }; 25}