Fix oopsie in rat.nix

This commit is contained in:
RGBCube 2024-02-12 16:00:46 +03:00 committed by GitHub
parent 1a8e9752da
commit 5ab7a168f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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]}
'';
}