Hi, david larsson skribis: > From 85cf7b9d22801d9b3bac8956b358fce4c32dcb4c Mon Sep 17 00:00:00 2001 > From: methuselah-0 > Date: Thu, 8 Apr 2021 21:26:23 +0200 > Subject: [PATCH] gnu: Add prips. > > gnu/packages/admin.scm (prips): New variable. [...] > + (replace 'install > + (lambda _ > + (let* > + ((bin-dir (string-append %output "/bin")) > + (bin-file (string-append bin-dir "/prips"))) > + (mkdir-p bin-dir) > + (copy-file "prips" bin-file) > + (chmod bin-file #o600))))))) That installed a non-executable file. I fixed this with the patch below, which also make the style more consistent. Thanks David, and thanks Maxime for the review! Ludo’.