tuicam: init at 0.0.2 (#377825)
[NixPkgs.git] / pkgs / by-name / gt / gtdialog / package.nix
blobef32b2bde612c9a653da17a542e8134d8a152c3b
2   lib,
3   stdenv,
4   fetchurl,
5   cdk,
6   unzip,
7   gtk2,
8   glib,
9   ncurses,
10   pkg-config,
13 stdenv.mkDerivation rec {
14   pname = "gtdialog";
15   version = "1.4";
17   src = fetchurl {
18     url = "https://foicica.com/gtdialog/download/gtdialog_${version}.zip";
19     sha256 = "sha256-0+WBr1IZIhQjxOsKO/yuXjaTRWPObhMdGqgibcpXGtI=";
20   };
22   nativeBuildInputs = [
23     pkg-config
24     unzip
25   ];
26   buildInputs = [
27     cdk
28     gtk2
29     glib
30     ncurses
31   ];
33   makeFlags = [ "PREFIX=$(out)" ];
35   meta = with lib; {
36     description = "Cross-platform helper for creating interactive dialogs";
37     mainProgram = "gtdialog";
38     license = licenses.mit;
39     maintainers = with maintainers; [ raskin ];
40     platforms = platforms.linux;
41     homepage = "http://foicica.com/gtdialog";
42     downloadPage = "http://foicica.com/gtdialog/download";
43   };