summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-25 19:59:31 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-25 19:59:31 -0800
commit426816e0db7047788e4ae597a30c5059d1a1913e (patch)
tree31c49c4a36acce767112a035588e8c56c177af0c /pkgs/tools
parent0fadb81af44fe7f43581a276d2ca863bdb64dd67 (diff)
downloadnixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar.gz
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar.bz2
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar.lz
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar.xz
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.tar.zst
nixlib-426816e0db7047788e4ae597a30c5059d1a1913e.zip
ddcutil: 0.8.5 -> 0.8.6
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil -h` got 0 exit code
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil --help` got 0 exit code
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil -V` and found version 0.8.6
- ran `/nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6/bin/ddcutil --version` and found version 0.8.6
- found 0.8.6 with grep in /nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6
- found 0.8.6 in filename of file in /nix/store/kvyrlv9mdf4wxiw0nyygh1gz398lzbny-ddcutil-0.8.6
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/ddcutil/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/ddcutil/default.nix b/pkgs/tools/misc/ddcutil/default.nix
index ec9ca37c082e..052f52e2ebd4 100644
--- a/pkgs/tools/misc/ddcutil/default.nix
+++ b/pkgs/tools/misc/ddcutil/default.nix
@@ -3,13 +3,13 @@
 
 stdenv.mkDerivation rec {
   name = "ddcutil-${version}";
-  version = "0.8.5";
+  version = "0.8.6";
 
   src = fetchFromGitHub {
     owner  = "rockowitz";
     repo   = "ddcutil";
     rev    = "v${version}";
-    sha256 = "127a5v545gvfgxqqjxqafsg1p8i4qd5wnpdwccr38jbsphl6yzl4";
+    sha256 = "1c4cl9cac90xf9rap6ss2d4yshcmhdq8pdfjz3g4cns789fs1vcf";
   };
 
   nativeBuildInputs = [ autoreconfHook pkgconfig ];