python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / gtdialog / default.nix
blobd7e60659a5eabe69a4b382ea595cd0d9506c60cf
1 { lib, stdenv, fetchurl, cdk, unzip, gtk2, glib, ncurses, pkg-config }:
3 stdenv.mkDerivation rec {
4   pname = "gtdialog";
5   version = "1.4";
7   src = fetchurl {
8     url = "https://foicica.com/gtdialog/download/gtdialog_${version}.zip";
9     sha256 = "sha256-0+WBr1IZIhQjxOsKO/yuXjaTRWPObhMdGqgibcpXGtI=";
10   };
12   nativeBuildInputs = [ pkg-config unzip ];
13   buildInputs = [
14     cdk
15     gtk2
16     glib
17     ncurses
18   ];
20   makeFlags = [ "PREFIX=$(out)" ];
22   meta = with lib; {
23     description = "Cross-platform helper for creating interactive dialogs";
24     license = licenses.mit;
25     maintainers = with maintainers; [ raskin ];
26     platforms = platforms.linux;
27     homepage = "http://foicica.com/gtdialog";
28     downloadPage = "http://foicica.com/gtdialog/download";
29   };