mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-06 23:31:34 +00:00
12 lines
163 B
Bash
12 lines
163 B
Bash
|
source $stdenv/setup
|
||
|
|
||
|
mkdir -pv $out/bin/
|
||
|
|
||
|
cat > $out/bin/zathura <<EOF
|
||
|
#!/bin/sh
|
||
|
exec $zathura --plugins-dir=$plugins_path "\$@"
|
||
|
EOF
|
||
|
|
||
|
chmod 755 $out/bin/zathura
|
||
|
|