commit 6872ee53cfe856a2d6c63cf4e0a5b8813336d115
parent 25dc69e38657a9f8f747107224ea3914f6800ca2
Author: Nikolay Korotkiy <sikmir@gmail.com>
Date: Wed, 22 Apr 2020 23:53:25 +0300
Fix CI build
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/pkgs/applications/macpass/default.nix b/pkgs/applications/macpass/default.nix
@@ -17,11 +17,14 @@ stdenv.mkDerivation rec {
${unzip}/bin/unzip $src -d $out/Applications
'';
+ preferLocalBuild = true;
+
meta = with stdenv.lib; {
description = "A native OS X KeePass client";
homepage = "https://macpassapp.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ sikmir ];
platforms = platforms.darwin;
+ skip.ci = true;
};
}