first
This commit is contained in:
commit
2203a06c02
12 changed files with 315 additions and 0 deletions
13
apps/firefox-esr-alias.nix
Normal file
13
apps/firefox-esr-alias.nix
Normal 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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue