2009-06-10 11:45:03 +02:00
|
|
|
a :
|
|
|
|
let
|
|
|
|
fetchurl = a.fetchurl;
|
|
|
|
|
2009-11-05 23:11:15 +01:00
|
|
|
s = import ./src-for-default.nix;
|
2009-06-10 11:45:03 +02:00
|
|
|
buildInputs = with a; [
|
2009-11-22 20:28:56 +01:00
|
|
|
perl intltool gettext libusb
|
2010-06-05 23:14:41 +02:00
|
|
|
glib pkgconfig
|
2009-06-10 11:45:03 +02:00
|
|
|
];
|
|
|
|
in
|
|
|
|
rec {
|
2009-11-05 23:11:15 +01:00
|
|
|
src = a.fetchUrlFromSrcInfo s;
|
2009-06-10 11:45:03 +02:00
|
|
|
|
|
|
|
inherit buildInputs;
|
|
|
|
configureFlags = [];
|
|
|
|
|
|
|
|
/* doConfigure should be removed if not needed */
|
|
|
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
|
|
|
2009-11-05 23:11:15 +01:00
|
|
|
inherit(s) name;
|
2009-06-10 11:45:03 +02:00
|
|
|
meta = {
|
|
|
|
description = "Cellphone tool";
|
2009-11-05 23:11:15 +01:00
|
|
|
maintainers = [a.lib.maintainers.raskin];
|
|
|
|
platforms = with a.lib.platforms; linux;
|
2009-06-10 11:45:03 +02:00
|
|
|
};
|
|
|
|
}
|