summary refs log tree commit diff
path: root/pkgs/tools/text/jsawk
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2020-09-30 16:00:56 +0200
committerMaciej Krüger <mkg20001@gmail.com>2020-10-01 10:00:22 +0200
commit946369adbd53c3abbff89ba068d64d6401d5bda5 (patch)
treea439c7e2976d64ac0aae77ba25b8a5e1305990ee /pkgs/tools/text/jsawk
parent7779eb31c59936d7fc018fedcf81a022fe112a54 (diff)
downloadnixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar.gz
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar.bz2
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar.lz
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar.xz
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.tar.zst
nixpkgs-946369adbd53c3abbff89ba068d64d6401d5bda5.zip
spidermonkey: remove spidermonkey_38 -> spidermonkey alias
This removes the spidermonkey alias and renames it in the packages still
using it

Not sure if we need it in aliases.nix since just about nothing depends
on it anymore

Additionally considering removal should be a good choice, it's at least
insecure so it should get tagged as such
Diffstat (limited to 'pkgs/tools/text/jsawk')
-rw-r--r--pkgs/tools/text/jsawk/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/text/jsawk/default.nix b/pkgs/tools/text/jsawk/default.nix
index 4f2ad403e36..51075c2ce17 100644
--- a/pkgs/tools/text/jsawk/default.nix
+++ b/pkgs/tools/text/jsawk/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, makeWrapper, spidermonkey }:
+{ stdenv, fetchFromGitHub, makeWrapper, spidermonkey_38 }:
 
 stdenv.mkDerivation {
   pname = "jsawk";
@@ -15,7 +15,7 @@ stdenv.mkDerivation {
     mkdir -p $out/bin
     cp $src/jsawk $out/bin/
     wrapProgram $out/bin/jsawk \
-      --prefix PATH : "${spidermonkey}/bin"
+      --prefix PATH : "${spidermonkey_38}/bin"
   '';
 
   meta = {