mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 01:04:25 +00:00
haskellPackages.gtkglext: new expression
This commit is contained in:
parent
cf4b0a1222
commit
e9e6e1ceb9
16
pkgs/development/libraries/haskell/gtkglext/default.nix
Normal file
16
pkgs/development/libraries/haskell/gtkglext/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{ pkgs, cabal, gtk, gtk2hsBuildtools, pangox_compat }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "gtkglext";
|
||||
version = "0.12.5.0";
|
||||
sha256 = "1xhalcb85cpswdpqxx64fxpmyqq7iakgaczjrbr25fp0h1glshhk";
|
||||
buildDepends = [ gtk ];
|
||||
buildTools = [ gtk2hsBuildtools ];
|
||||
pkgconfigDepends = [ pkgs.gnome2.gtkglext pangox_compat ];
|
||||
meta = {
|
||||
homepage = "http://projects.haskell.org/gtk2hs/";
|
||||
description = "Binding to the GTK+ OpenGL Extension";
|
||||
license = self.stdenv.lib.licenses.lgpl21;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
@ -928,6 +928,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
||||
libc = pkgs.stdenv.gcc.libc;
|
||||
};
|
||||
|
||||
gtkglext = callPackage ../development/libraries/haskell/gtkglext {};
|
||||
|
||||
gtk2hsBuildtools = callPackage ../development/libraries/haskell/gtk2hs-buildtools {};
|
||||
gtk2hsC2hs = self.gtk2hsBuildtools;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user