mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 16:45:49 +01:00
d339184bbf
Expression handles new modular structure of zathura and adds support for djvu, pdf and ps plugins.
11 lines
163 B
Bash
11 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
|
|
|