summary refs log tree commit diff
path: root/pkgs/development/web/cypress/default.nix
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-10 00:42:40 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-16 20:12:04 +0100
commit12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086 (patch)
tree504f70e8341ee32cf1e45c1bc425a3cb333ca511 /pkgs/development/web/cypress/default.nix
parent8d64fd7d585b4daf9a833f6ccd07e758c821b0fc (diff)
downloadnixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar.gz
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar.bz2
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar.lz
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar.xz
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.tar.zst
nixpkgs-12eea1c636c6da2f2cfdfd2a0c9117a8a5b87086.zip
treewide/development: add sourceType binaryNativeCode for many packages
excluding compilers and interpreters as some new tricks may be
needed to cover their various bootstrapping processes properly
Diffstat (limited to 'pkgs/development/web/cypress/default.nix')
-rw-r--r--pkgs/development/web/cypress/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/web/cypress/default.nix b/pkgs/development/web/cypress/default.nix
index b85a1f06b2b..e3f5a8b99cf 100644
--- a/pkgs/development/web/cypress/default.nix
+++ b/pkgs/development/web/cypress/default.nix
@@ -70,6 +70,7 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Fast, easy and reliable testing for anything that runs in a browser";
     homepage = "https://www.cypress.io";
+    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
     license = licenses.mit;
     platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ tweber mmahut ];