~ruther/nix-fpga

ref: d32ae553858be49b17fcaf188c940637d54cbb91 nix-fpga/pkgs/xilinx/ise/fhs-shell.nix -rw-r--r-- 184 bytes
d32ae553 — Rutherther chore: add license 1 year, 9 months ago
                                                                                
1
2
3
4
5
6
7
{ pkgs, lib, myLib, ise-fw, ... }:

let
  fhs = pkgs.callPackage ./fhs.nix {  inherit myLib ise-fw; };
in pkgs.writeShellScriptBin "ise-shell" ''
  exec ${lib.getExe fhs} bash "$@"
''