From mboxrd@z Thu Jan 1 00:00:00 1970 From: EuAndreh via Subject: guix environment shebang interpreter Date: Mon, 20 Jan 2020 21:02:06 -0300 Message-ID: <877e1lwubl.fsf@euandre.org> Reply-To: EuAndreh Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:36779) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1itgzm-0003fh-6v for Help-Guix@gnu.org; Mon, 20 Jan 2020 19:02:18 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1itgzi-0002Tv-7w for Help-Guix@gnu.org; Mon, 20 Jan 2020 19:02:14 -0500 Received: from box.euandre.org ([162.243.185.39]:46467) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1itgzi-0002Tp-2f for Help-Guix@gnu.org; Mon, 20 Jan 2020 19:02:10 -0500 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: help-guix Hi Guix! Is there a Guix equivalent of the nix-shell shebang? Sample from Nix documentation (https://nixos.org/nix/manual/#use-as-a-interpreter): --8<---------------cut here---------------start------------->8--- #!/usr/bin/env nix-shell #!nix-shell -i perl -p perl perlPackages.HTMLTokeParserSimple perlPackages.LWP use HTML::TokeParser::Simple; ... --8<---------------cut here---------------end--------------->8--- Can I already accomplish this with Guix? If so, how? I tried searching previous discussions of this topic on Guix mailing lists, but couldn't find any. If this was disscussed before, could anyone point me to the thread? Thanks!