nixpkgs/pkgs/os-specific/linux/libatasmart/default.nix
Vladimír Čunát 071a2c4b81 libatasmart: update 0.17 -> 0.19
Alas, no NEWS anywhere.
From skimming git shortlog I see nothing special -- hopefully OK.
2013-11-18 20:23:45 +01:00

19 lines
445 B
Nix

{ stdenv, fetchurl, pkgconfig, udev }:
stdenv.mkDerivation rec {
name = "libatasmart-0.19";
src = fetchurl {
url = "http://0pointer.de/public/${name}.tar.xz";
sha256 = "138gvgdwk6h4ljrjsr09pxk1nrki4b155hqdzyr8mlk3bwsfmw31";
};
buildInputs = [ pkgconfig udev ];
meta = {
homepage = http://0pointer.de/public/;
description = "Library for querying ATA SMART status";
platforms = stdenv.lib.platforms.linux;
};
}