1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 06:31:02 +00:00

Merge pull request #35561 from ryantm/auto-update/blktrace-1.1.0-to-1.2.0

blktrace: 1.1.0 -> 1.2.0
This commit is contained in:
adisbladis 2018-02-26 10:23:28 +08:00 committed by GitHub
commit c718b057d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,13 +1,13 @@
{ stdenv, fetchurl, libaio }:
stdenv.mkDerivation {
name = "blktrace-1.1.0";
name = "blktrace-1.2.0";
# Official source
# "git://git.kernel.org/pub/scm/linux/kernel/git/axboe/blktrace.git"
src = fetchurl {
url = "http://brick.kernel.dk/snaps/blktrace-1.1.0.tar.bz2";
sha256 = "15cj9aki7z5i5y6bnchqry6yp40r4lmgmam6ar5gslnx0smgm8jl";
url = "http://brick.kernel.dk/snaps/blktrace-1.2.0.tar.bz2";
sha256 = "0i9z7ayh9qx4wi0ihyz15bhr1c9aknjl8v5i8c9mx3rhyy41i5i6";
};
buildInputs = [ libaio ];