nixpkgs/pkgs/development/libraries/gtdialog/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
769 B
Nix
Raw Normal View History

2021-12-21 11:46:09 +00:00
{ lib, stdenv, fetchurl, cdk, unzip, gtk2, glib, ncurses, pkg-config }:
stdenv.mkDerivation rec {
pname = "gtdialog";
version = "1.4";
src = fetchurl {
url = "https://foicica.com/gtdialog/download/gtdialog_${version}.zip";
sha256 = "sha256-0+WBr1IZIhQjxOsKO/yuXjaTRWPObhMdGqgibcpXGtI=";
2015-06-02 17:29:17 +00:00
};
2021-12-21 11:46:09 +00:00
nativeBuildInputs = [ pkg-config unzip ];
2015-06-02 17:29:17 +00:00
buildInputs = [
2021-12-21 11:46:09 +00:00
cdk
gtk2
glib
ncurses
2015-06-02 17:29:17 +00:00
];
2021-12-21 11:46:09 +00:00
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
description = "Cross-platform helper for creating interactive dialogs";
2021-12-21 11:46:09 +00:00
license = licenses.mit;
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = "http://foicica.com/gtdialog";
2015-06-02 17:29:17 +00:00
downloadPage = "http://foicica.com/gtdialog/download";
};
}