mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Added gtk-sharp
svn path=/nixpkgs/trunk/; revision=2277
This commit is contained in:
parent
5ab3aa73c4
commit
3d300e6976
1 changed files with 12 additions and 0 deletions
12
pkgs/development/libraries/gtk-sharp/default.nix
Normal file
12
pkgs/development/libraries/gtk-sharp/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{stdenv, fetchurl, pkgconfig, glib, pango, mono, gtk, libxml2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gtk-sharp-1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.go-mono.com/archive/1.0.6/gtk-sharp-1.0.6.tar.gz;
|
||||
md5 = "2651d14fe77174ab20b8af53d150ee11";
|
||||
};
|
||||
|
||||
buildInputs = [pkgconfig mono glib pango gtk libxml2];
|
||||
}
|
Loading…
Reference in a new issue