46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
19 lines
463 B
Nix
19 lines
463 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sdparm";
|
|
version = "1.10";
|
|
|
|
src = fetchurl {
|
|
url = "http://sg.danny.cz/sg/p/${pname}-${version}.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;
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|