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,
|
stdenv,
|
||||||
|
lib,
|
||||||
|
|
||||||
|
bash,
|
||||||
fetchurl,
|
fetchurl,
|
||||||
gnused,
|
gnused,
|
||||||
makeWrapper,
|
makeWrapper,
|
||||||
pkgs,
|
opusfile,
|
||||||
lib,
|
sharutils,
|
||||||
pins,
|
sox,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rat";
|
pname = "rat";
|
||||||
version = "1.1";
|
version = "1.1";
|
||||||
|
@ -32,6 +36,6 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/rat \
|
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