From 8890e540d91f819b6383249da9515ae3d71000db Mon Sep 17 00:00:00 2001 From: "R. RyanTM" Date: Wed, 13 Jun 2018 20:43:39 -0700 Subject: [PATCH] smenu: 0.9.11 -> 0.9.13 Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/smenu/versions. These checks were done: - built on NixOS - /nix/store/d1fp4j713cffpq0kkvi90aqh0bh6pd4d-smenu-0.9.13/bin/smenu passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 1 of 1 passed binary check by having the new version present in output. - found 0.9.13 with grep in /nix/store/d1fp4j713cffpq0kkvi90aqh0bh6pd4d-smenu-0.9.13 - directory tree listing: https://gist.github.com/26b5e2b7abfe62fcfd01cdbf1c27f655 - du listing: https://gist.github.com/ff013902ab9eca9065e3794daccf7700 --- pkgs/tools/misc/smenu/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/misc/smenu/default.nix b/pkgs/tools/misc/smenu/default.nix index 77622ce8a1ea..30475047c4f7 100644 --- a/pkgs/tools/misc/smenu/default.nix +++ b/pkgs/tools/misc/smenu/default.nix @@ -1,14 +1,14 @@ { stdenv, fetchFromGitHub, ncurses }: stdenv.mkDerivation rec { - version = "0.9.11"; + version = "0.9.13"; name = "smenu-${version}"; src = fetchFromGitHub { owner = "p-gen"; repo = "smenu"; rev = "v${version}"; - sha256 = "1va5gsxniin02casgdrqxvpzccm0vwjiql60qrsvncrq6nm6bz0d"; + sha256 = "0ixfl1dxkvmzb3xy6zs1x94hlf8y7zmd14gmb50rp7gb7ff1ivm5"; }; buildInputs = [ ncurses ];