This commit is contained in:
rhiannon morris 2025-03-03 00:08:57 +01:00
commit 2203a06c02
12 changed files with 315 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> {} }:
let inherit (pkgs) stdenv firefox-esr; in
stdenv.mkDerivation {
pname = "firefox-esr-alias";
inherit (firefox-esr) version;
buildInputs = [ firefox-esr ];
dontUnpack = true;
installPhase = ''
mkdir -p $out/bin
ln -s ${firefox-esr}/bin/firefox-esr $out/bin/firefox-esr
'';
}