summary refs log tree commit diff
path: root/pkgs/shells/powershell
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-17 00:40:08 +0100
committerRobert Scott <code@humanleg.org.uk>2022-07-02 13:38:00 +0100
commit3d6c926c4f6464ba73a176686d65536f3ce17da4 (patch)
treebf7aafdf41ac52517a605b508a3567c164299305 /pkgs/shells/powershell
parent16c19219d3c556974b20a146d6c2771b2924b737 (diff)
downloadnixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar.gz
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar.bz2
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar.lz
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar.xz
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.tar.zst
nixpkgs-3d6c926c4f6464ba73a176686d65536f3ce17da4.zip
treewide/servers,shells,tools: add sourceType for more packages
Diffstat (limited to 'pkgs/shells/powershell')
-rw-r--r--pkgs/shells/powershell/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/shells/powershell/default.nix b/pkgs/shells/powershell/default.nix
index e03a2e24e7e..435f54cdf4a 100644
--- a/pkgs/shells/powershell/default.nix
+++ b/pkgs/shells/powershell/default.nix
@@ -74,6 +74,10 @@ stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Powerful cross-platform (Windows, Linux, and macOS) shell and scripting language based on .NET";
     homepage = "https://github.com/PowerShell/PowerShell";
+    sourceProvenance = with sourceTypes; [
+      binaryBytecode
+      binaryNativeCode
+    ];
     maintainers = with maintainers; [ yrashk srgom p3psi ];
     mainProgram = "pwsh";
     platforms = [ "x86_64-darwin" "x86_64-linux" "aarch64-linux" "aarch64-darwin" ];