mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
20 lines
507 B
Nix
20 lines
507 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sdparm-${version}";
|
|
version = "1.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://sg.danny.cz/sg/p/${name}.tar.xz";
|
|
sha256 = "1jjq3lzgfy4r76rc26q02lv4wm5cb4dx5nh913h489zjrr4f3jbx";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://sg.danny.cz/sg/sdparm.html;
|
|
description = "A utility to access SCSI device parameters";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ nckx ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|