nixpkgs/pkgs/tools/misc/gnokii/default.nix
Michael Raskin 43790aa2dc Fixing Gnokii build
svn path=/nixpkgs/trunk/; revision=22160
2010-06-05 21:14:41 +00:00

27 lines
518 B
Nix

a :
let
fetchurl = a.fetchurl;
s = import ./src-for-default.nix;
buildInputs = with a; [
perl intltool gettext libusb
glib pkgconfig
];
in
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";
maintainers = [a.lib.maintainers.raskin];
platforms = with a.lib.platforms; linux;
};
}