nixpkgs/pkgs/tools/misc/gnokii/default.nix
Yury G. Kudryashov db3b157ff6 gnokii-0.6.30, add ical and gtk support
svn path=/nixpkgs/trunk/; revision=26334
2011-03-15 23:09:14 +00:00

32 lines
625 B
Nix

a :
let
fetchurl = a.fetchurl;
s = import ./src-for-default.nix;
buildInputs = with a; [
perl intltool gettext libusb
glib gtk pkgconfig bluez readline
libXpm pcsclite libical
];
in
assert a.stdenv ? glibc;
rec {
src = a.fetchUrlFromSrcInfo s;
inherit buildInputs;
configureFlags = [];
/* doConfigure should be removed if not needed */
phaseNames = [ "doConfigure" "doMakeInstall"];
inherit(s) name;
meta = {
description = "Cellphone tool";
homepage = http://www.gnokii.org;
maintainers = [a.lib.maintainers.raskin];
platforms = with a.lib.platforms; linux;
};
}