From dc68c10e94ab2674a7ae8710538a9e1b0bd944f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Mon, 14 Oct 2013 17:13:50 +0200 Subject: [PATCH] fix eval --- pkgs/tools/security/prey/default.nix | 8 ++++---- pkgs/top-level/all-packages.nix | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/tools/security/prey/default.nix b/pkgs/tools/security/prey/default.nix index 37416b4da1a4..fe71806301dd 100644 --- a/pkgs/tools/security/prey/default.nix +++ b/pkgs/tools/security/prey/default.nix @@ -1,10 +1,10 @@ { stdenv, fetchurl, fetchgit, curl, scrot, imagemagick, xawtv, inetutils, makeWrapper, coreutils -, apiKey ? null -, deviceKey ? null }: +, apiKey ? "" +, deviceKey ? "" }: # TODO: this should assert keys are set, somehow if set through .override assertion fails -#assert apiKey != null; -#assert deviceKey != null; +#assert apiKey != ""; +#assert deviceKey != ""; let modulesSrc = fetchgit { diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 97b3e50b6995..7677fcc75035 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -1597,7 +1597,7 @@ let pptp = callPackage ../tools/networking/pptp {}; - "prey-bash-client" = callPackage ../tools/security/prey { }; + prey-bash-client = callPackage ../tools/security/prey { }; proxychains = callPackage ../tools/networking/proxychains { };