29cd3206f2
svn path=/nixpkgs/trunk/; revision=25331
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
x@{builderDefsPackage
|
|
(abort "Specify dependencies")
|
|
, ...}:
|
|
builderDefsPackage
|
|
(a :
|
|
let
|
|
helperArgNames = ["stdenv" "fetchurl" "builderDefsPackage"] ++
|
|
[(abort "Specify helper argument names")];
|
|
|
|
buildInputs = map (n: builtins.getAttr n x)
|
|
(builtins.attrNames (builtins.removeAttrs x helperArgNames));
|
|
sourceInfo = rec {
|
|
baseName="${abort ''Specify package name''}";
|
|
version="";
|
|
name="${baseName}-${version}";
|
|
url="${name}";
|
|
hash="";
|
|
};
|
|
in
|
|
rec {
|
|
src = a.fetchurl {
|
|
url = sourceInfo.url;
|
|
sha256 = sourceInfo.hash;
|
|
};
|
|
|
|
inherit (sourceInfo) name version;
|
|
inherit buildInputs;
|
|
|
|
/* doConfigure should be removed if not needed */
|
|
phaseNames = ["doConfigure" "doMakeInstall"];
|
|
|
|
meta = {
|
|
description = "${abort ''Specify description''}";
|
|
maintainers = with a.lib.maintainers;
|
|
[
|
|
(abort "Specify maintainers")
|
|
];
|
|
platforms = with a.lib.platforms;
|
|
(abort "Specify platforms");
|
|
license = a.lib.licenses.(abort "Specify license");
|
|
};
|
|
passthru = {
|
|
updateInfo = {
|
|
downloadPage = "${abort ''Specify download page''}";
|
|
};
|
|
};
|
|
}) x
|
|
|