43790aa2dc
svn path=/nixpkgs/trunk/; revision=22160
27 lines
518 B
Nix
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;
|
|
};
|
|
}
|