units: Add units_cur python script to $out
This commit is contained in:
parent
002f2bc1af
commit
c7f682a59a
|
@ -1,4 +1,13 @@
|
||||||
{ stdenv, fetchurl, readline }:
|
{
|
||||||
|
stdenv,
|
||||||
|
lib,
|
||||||
|
fetchurl,
|
||||||
|
readline,
|
||||||
|
enableCurrenciesUpdater ? true,
|
||||||
|
pythonPackages ? null
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert enableCurrenciesUpdater -> pythonPackages != null;
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "units";
|
pname = "units";
|
||||||
|
@ -9,7 +18,22 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0mk562g7dnidjgfgvkxxpvlba66fh1ykmfd9ylzvcln1vxmi6qj2";
|
sha256 = "0mk562g7dnidjgfgvkxxpvlba66fh1ykmfd9ylzvcln1vxmi6qj2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ readline ];
|
pythonEnv = pythonPackages.python.withPackages(ps: [
|
||||||
|
ps.requests
|
||||||
|
]);
|
||||||
|
|
||||||
|
buildInputs = [ readline ]
|
||||||
|
++ lib.optionals enableCurrenciesUpdater [
|
||||||
|
pythonEnv
|
||||||
|
]
|
||||||
|
;
|
||||||
|
prePatch = ''
|
||||||
|
substituteInPlace units_cur \
|
||||||
|
--replace "#!/usr/bin/env python" ${pythonEnv}/bin/python
|
||||||
|
'';
|
||||||
|
postInstall = ''
|
||||||
|
cp units_cur ${placeholder "out"}/bin/
|
||||||
|
'';
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
|
|
@ -6936,7 +6936,10 @@ in
|
||||||
|
|
||||||
unbound = callPackage ../tools/networking/unbound { };
|
unbound = callPackage ../tools/networking/unbound { };
|
||||||
|
|
||||||
units = callPackage ../tools/misc/units { };
|
units = callPackage ../tools/misc/units {
|
||||||
|
enableCurrenciesUpdater = true;
|
||||||
|
pythonPackages = python3Packages;
|
||||||
|
};
|
||||||
|
|
||||||
unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
|
unittest-cpp = callPackage ../development/libraries/unittest-cpp { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue