mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
* Debian requires/provides should be comma-separated.
svn path=/nixpkgs/trunk/; revision=31259
This commit is contained in:
parent
032617b0ab
commit
f3c3f11520
@ -11,6 +11,8 @@
|
||||
debRequires ? []
|
||||
, ... } @ args:
|
||||
|
||||
with stdenv.lib;
|
||||
|
||||
vmTools.runInLinuxImage (stdenv.mkDerivation (
|
||||
|
||||
{
|
||||
@ -61,8 +63,8 @@ vmTools.runInLinuxImage (stdenv.mkDerivation (
|
||||
|
||||
${checkinstall}/sbin/checkinstall --nodoc -y -D \
|
||||
--fstrans=${if fsTranslation then "yes" else "no"} \
|
||||
--requires="${toString debRequires}" \
|
||||
--provides="${toString debProvides}" \
|
||||
--requires="${concatStringsSep "," debRequires}" \
|
||||
--provides="${concatStringsSep "," debProvides}" \
|
||||
make install
|
||||
|
||||
ensureDir $out/debs
|
||||
|
Loading…
Reference in New Issue
Block a user