summary refs log tree commit diff
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-04-25 21:45:09 -0700
committerR. RyanTM <ryantm+bot@ryantm.com>2018-04-25 21:45:09 -0700
commit518eca82567b69349f987f8b0a015ade0a974aff (patch)
treeed73c458608cec274f42a3a3df21b45f45bf805c
parent7e33e374db487ed87db316db3b2687f917aa7f90 (diff)
downloadnixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar.gz
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar.bz2
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar.lz
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar.xz
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.tar.zst
nixlib-518eca82567b69349f987f8b0a015ade0a974aff.zip
tini: 0.17.0 -> 0.18.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/tini/versions.

These checks were done:

- built on NixOS
- ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini -h’ got 0 exit code
- ran ‘/nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0/bin/tini --version’ and found version 0.18.0
- found 0.18.0 with grep in /nix/store/h0h2qyxwrvsjy47m1xyv7sxzd2j0ilsi-tini-0.18.0
- directory tree listing: https://gist.github.com/c992fd0a24dfc0365d6b62ac567d395c
-rw-r--r--pkgs/applications/virtualization/tini/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/virtualization/tini/default.nix b/pkgs/applications/virtualization/tini/default.nix
index c027541c01c1..25c19cd79c7f 100644
--- a/pkgs/applications/virtualization/tini/default.nix
+++ b/pkgs/applications/virtualization/tini/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchFromGitHub, cmake, glibc }:
 
 stdenv.mkDerivation rec {
-  version = "0.17.0";
+  version = "0.18.0";
   name = "tini-${version}";
 
   src = fetchFromGitHub {
     owner = "krallin";
     repo = "tini";
     rev = "v${version}";
-    sha256 ="0y16xk89811a6g2srg63jv5b2221dirzrhha7mj056a6jq5ql2f0";
+    sha256 ="1h20i3wwlbd8x4jr2gz68hgklh0lb0jj7y5xk1wvr8y58fip1rdn";
   };
 
   patchPhase = "sed -i /tini-static/d CMakeLists.txt";