982a83aa2e
(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
18 lines
437 B
Nix
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 ];
|
|
};
|
|
}
|