nixpkgs/pkgs/tools/system/sg3_utils/default.nix
Eelco Dolstra 982a83aa2e * Added udisks, the replacement of the disk management bits of HAL
(which is obsolete).
* lvm2: updated to 2.02.86.  Also install the pkgconfig files and
  build liblvm2app.
* Added libatasmart (udisks dependency for querying ATA SMART status).
* Updated sg3_utils to 1.31.

svn path=/nixpkgs/branches/kde-4.7/; revision=27908
2011-07-23 01:29:51 +00:00

18 lines
437 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "sg3_utils-1.31";
src = fetchurl {
url = "http://sg.danny.cz/sg/p/${name}.tgz";
sha256 = "190hhkhl096fxkspkr93lrq1n79xz5c5i2n4n4g998qc3yv3hjyq";
};
meta = {
homepage = http://sg.danny.cz/sg/;
description = "Utilities that send SCSI commands to devices";
platforms = stdenv.lib.platforms.all;
maintainers = [ stdenv.lib.maintainers.urkud ];
};
}