summary refs log tree commit diff
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2020-06-10 00:03:19 +0200
committerProfpatsch <mail@profpatsch.de>2020-06-10 14:49:06 +0200
commita3698d9f36b4135143fd61dcd04c09823d2c2fcc (patch)
tree453a3c54ba876496dfb9767ff93002033bc681a3
parent879202bf3747e69868065973bc6ad5bc4620bfb3 (diff)
downloadnixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar.gz
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar.bz2
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar.lz
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar.xz
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.tar.zst
nixpkgs-a3698d9f36b4135143fd61dcd04c09823d2c2fcc.zip
execline: 2.6.0.0 -> 2.6.1.0
 Hello,

 execline-2.6.1.0 is out.

 This version features a more expressive format for the envfile binary.
Most of the files that are suitable for a systemd EnvironmentFile=
directive are now parsable with envfile: double quotes are supported,
backslashed newlines are supported, a few C escape sequences are
supported (including octal and hexadecimal). So it is now possible to
read most existing /etc/default configuration files without spawning a
shell.

 Additionally, envfile now comes with a -I option that makes it ignore
a nonexistent file, instead of failing.

 git://git.skarnet.org/execline
 https://skarnet.org/software/execline/

 Enjoy,
 Bug-reports welcome.
-rw-r--r--pkgs/tools/misc/execline/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/execline/default.nix b/pkgs/tools/misc/execline/default.nix
index d3a6990a1f8..ecedd2b0b41 100644
--- a/pkgs/tools/misc/execline/default.nix
+++ b/pkgs/tools/misc/execline/default.nix
@@ -7,8 +7,8 @@ with skawarePackages;
 
 buildPackage {
   pname = "execline";
-  version = "2.6.0.0";
-  sha256 = "1m6pvawxqaqjr49456vyjyl8dnqwvr19v77sjj7dnglfijwza5al";
+  version = "2.6.1.0";
+  sha256 = "0mj565xml3hvw27finydms0s9abbbpgbr29vnr8gwi7zjzq7ck52";
 
   description = "A small scripting language, to be used in place of a shell in non-interactive scripts";