summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/glib/default.nix
blob: 78fc7d37d0efda4cd19d1e77fbb7ad3fa61db396 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{cabal, gtk2hsBuildtools, pkgconfig, glib, glibc}:

cabal.mkDerivation (self : {
  pname = "glib";
  version = "0.12.0";
  sha256 = "1sqkj6adg87ccdnl9yy1p8yrv5xnfcrlaflj52nrh6anwlqy9z19";
  extraBuildInputs = [pkgconfig glib glibc gtk2hsBuildtools];
  meta = {
    description = "Binding to the GLIB library for Gtk2Hs";
    license = "LGPLv2+";
    maintainers = [self.stdenv.lib.maintainers.andres];
  };
})