mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
19 lines
521 B
Nix
19 lines
521 B
Nix
{stdenv, fetchurl, gtk, pkgconfig}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "gtkdialog-0.8.3";
|
|
|
|
src = fetchurl {
|
|
url = http://gtkdialog.googlecode.com/files/gtkdialog-0.8.3.tar.gz;
|
|
sha256 = "ff89d2d7f1e6488e5df5f895716ac1d4198c2467a2a5dc1f51ab408a2faec38e";
|
|
};
|
|
|
|
buildInputs = [ gtk pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = http://gtkdialog.googlecode.com/;
|
|
description = "Small utility for fast and easy GUI building from many scripted and compiled languages";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
};
|
|
}
|