summary refs log tree commit diff
path: root/pkgs/development/pure-modules/gtk/default.nix
blob: 1e7957ae38206e60f8b8a9fdea59a62b7526fca8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, pkgconfig, pure, pure-ffi, gtk2 }:

stdenv.mkDerivation rec {
  baseName = "gtk";
  version = "0.13";
  name = "pure-${baseName}-${version}";

  src = fetchurl {
    url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
    sha256 = "e659ff1bc5809ce35b810f8ac3fb7e8cadaaef13996537d8632e2f86ed76d203";
  };

  nativeBuildInputs = [ pkgconfig ];
  propagatedBuildInputs = [ pure pure-ffi gtk2 ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "A collection of bindings to use the GTK GUI toolkit version 2.x with Pure";
    homepage = http://puredocs.bitbucket.org/pure-gtk.html;
    license = stdenv.lib.licenses.lgpl3Plus;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ asppsa ];
  };
}