summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSymphorien Gibol <symphorien+git@xlumurb.eu>2018-08-07 02:43:40 +0200
committerSymphorien Gibol <symphorien+git@xlumurb.eu>2018-08-07 02:43:40 +0200
commita85fedab2ea2303cb34c7c44823c53523f508130 (patch)
treef6189a653d1195d8fecf3f99c23f8f20ccfe1c61 /pkgs
parentd1ae60cbad7a49874310de91cd17708b042400c8 (diff)
downloadnixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar.gz
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar.bz2
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar.lz
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar.xz
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.tar.zst
nixlib-a85fedab2ea2303cb34c7c44823c53523f508130.zip
osquery: do not rebuild at each nixpkgs commit
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/system/osquery/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/system/osquery/default.nix b/pkgs/tools/system/osquery/default.nix
index 5b2be75e452f..6cdaec10868f 100644
--- a/pkgs/tools/system/osquery/default.nix
+++ b/pkgs/tools/system/osquery/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
 
   # this is what `osquery --help` will show as the version.
   OSQUERY_BUILD_VERSION = version;
-  OSQUERY_PLATFORM = "nixos;${stdenv.lib.version}";
+  OSQUERY_PLATFORM = "NixOS;";
 
   src = fetchFromGitHub {
     owner = "facebook";