My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/libatasmart/default.nix

22 lines
628 B

{ lib, stdenv, fetchurl, pkg-config, udev, buildPackages }:
stdenv.mkDerivation rec {
pname = "libatasmart";
version = "0.19";
src = fetchurl {
url = "http://0pointer.de/public/libatasmart-${version}.tar.xz";
sha256 = "138gvgdwk6h4ljrjsr09pxk1nrki4b155hqdzyr8mlk3bwsfmw31";
};
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ udev ];
meta = with lib; {
homepage = "http://0pointer.de/blog/projects/being-smart.html";
description = "Library for querying ATA SMART status";
license = licenses.lgpl21;
platforms = platforms.linux;
};
}