Merge pull request #124868 from LnL7/darwin-fwup

fwup: fix darwin build
This commit is contained in:
davidak 2021-08-26 05:19:09 +02:00 committed by GitHub
commit 66933d5f13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -56,6 +56,6 @@ in stdenv.mkDerivation rec {
'';
homepage = "http://xdelta.org/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
platforms = platforms.unix;
};
}

View File

@ -59,7 +59,7 @@ stdenv.mkDerivation rec {
xdelta
];
doCheck = true;
doCheck = !stdenv.isDarwin;
meta = with lib; {
description = "Configurable embedded Linux firmware update creator and runner";