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

33 lines
981 B
Nix
Raw Normal View History

{stdenv, fetchurl, cdk, unzip, gtk2, glib, ncurses, pkgconfig}:
2015-06-02 17:29:17 +00:00
let
s = # Generated upstream information
rec {
baseName="gtdialog";
2016-09-26 13:39:38 +00:00
version="1.3";
2015-06-02 17:29:17 +00:00
name="${baseName}-${version}";
2016-09-26 13:39:38 +00:00
hash="0y7sln877940bpj0s38cs5s97xg8csnaihh18lmnchf7c2kkbxpq";
url="http://foicica.com/gtdialog/download/gtdialog_1.3.zip";
sha256="0y7sln877940bpj0s38cs5s97xg8csnaihh18lmnchf7c2kkbxpq";
2015-06-02 17:29:17 +00:00
};
buildInputs = [
cdk unzip gtk2 glib ncurses pkgconfig
2015-06-02 17:29:17 +00:00
];
in
stdenv.mkDerivation {
inherit (s) name version;
inherit buildInputs;
src = fetchurl {
inherit (s) url sha256;
};
makeFlags = ["PREFIX=$(out)"];
meta = {
inherit (s) version;
description = ''Cross-platform helper for creating interactive dialogs'';
license = stdenv.lib.licenses.mit ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
homepage = http://foicica.com/gtdialog;
2015-06-02 17:29:17 +00:00
downloadPage = "http://foicica.com/gtdialog/download";
};
}