summary refs log tree commit diff
path: root/pkgs/development/tools/misc/lttng-ust
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-02-26 22:03:04 -0800
committerRyan Mulligan <ryan@ryantm.com>2018-02-26 22:03:04 -0800
commit397077c1e9b68de581134edae41e91e678f81495 (patch)
tree3a6a09546e8029fe1ad039f04d141499b65c631a /pkgs/development/tools/misc/lttng-ust
parentb63297b203e28f13ce7801c578afa30709cb4edd (diff)
downloadnixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar.gz
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar.bz2
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar.lz
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar.xz
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.tar.zst
nixpkgs-397077c1e9b68de581134edae41e91e678f81495.zip
lttng-ust: 2.10.0 -> 2.10.1
Semi-automatic update. These checks were performed:

- built on NixOS
- ran `/nix/store/lf189bg3wyp8bbiw6kqwlvhm3yc4wdgq-lttng-ust-2.10.1/bin/lttng-gen-tp -h` got 0 exit code
- ran `/nix/store/lf189bg3wyp8bbiw6kqwlvhm3yc4wdgq-lttng-ust-2.10.1/bin/lttng-gen-tp --help` got 0 exit code
- ran `/nix/store/lf189bg3wyp8bbiw6kqwlvhm3yc4wdgq-lttng-ust-2.10.1/bin/lttng-gen-tp help` got 0 exit code
- found 2.10.1 with grep in /nix/store/lf189bg3wyp8bbiw6kqwlvhm3yc4wdgq-lttng-ust-2.10.1
- found 2.10.1 in filename of file in /nix/store/lf189bg3wyp8bbiw6kqwlvhm3yc4wdgq-lttng-ust-2.10.1

cc "@bjornfor"
Diffstat (limited to 'pkgs/development/tools/misc/lttng-ust')
-rw-r--r--pkgs/development/tools/misc/lttng-ust/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/lttng-ust/default.nix b/pkgs/development/tools/misc/lttng-ust/default.nix
index bfdebec154a..edfc7dc30ca 100644
--- a/pkgs/development/tools/misc/lttng-ust/default.nix
+++ b/pkgs/development/tools/misc/lttng-ust/default.nix
@@ -13,11 +13,11 @@
 
 stdenv.mkDerivation rec {
   name = "lttng-ust-${version}";
-  version = "2.10.0";
+  version = "2.10.1";
 
   src = fetchurl {
     url = "https://lttng.org/files/lttng-ust/${name}.tar.bz2";
-    sha256 = "1avx4p71g9m3zvynhhhysxnpkqyhhlv42xiv9502bvp3nwfkgnqs";
+    sha256 = "17gfi1dn6bgg59qn4ihf8hag96lalx0g7dym2ccpzdz7f45krk07";
   };
 
   buildInputs = [ python ];