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