mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2025-04-01 18:51:55 +00:00
Fix oopsie in rat.nix
This commit is contained in:
parent
1a8e9752da
commit
5ab7a168f4
1 changed files with 8 additions and 4 deletions
|
@ -1,12 +1,16 @@
|
|||
{
|
||||
stdenv,
|
||||
lib,
|
||||
|
||||
bash,
|
||||
fetchurl,
|
||||
gnused,
|
||||
makeWrapper,
|
||||
pkgs,
|
||||
lib,
|
||||
pins,
|
||||
opusfile,
|
||||
sharutils,
|
||||
sox,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rat";
|
||||
version = "1.1";
|
||||
|
@ -32,6 +36,6 @@ stdenv.mkDerivation rec {
|
|||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/rat \
|
||||
--prefix PATH : ${lib.makeBinPath (with pkgs; [sharutils opusfile sox bash])}
|
||||
--prefix PATH : ${lib.makeBinPath [sharutils opusfile sox bash]}
|
||||
'';
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue