profile-cleaner: add missing dependency

profile-cleaner does not run correctly without the file utility.
This commit is contained in:
S. Nordin Abouzahra 2018-01-16 12:56:54 -05:00
parent 4dff3ee959
commit e63e55c171

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, makeWrapper, parallel, sqlite, bc }:
{ stdenv, fetchFromGitHub, makeWrapper, parallel, sqlite, bc, file }:
stdenv.mkDerivation rec {
version = "2.36";
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
installPhase = ''
PREFIX=\"\" DESTDIR=$out make install
wrapProgram $out/bin/profile-cleaner \
--prefix PATH : "${stdenv.lib.makeBinPath [ parallel sqlite bc ]}"
--prefix PATH : "${stdenv.lib.makeBinPath [ parallel sqlite bc file ]}"
'';
meta = {