python312Packages.vdf: avoid using pname for src.repo
[NixPkgs.git] / pkgs / os-specific / linux / sdparm / default.nix
blob2bd1a0946674ee0a710add4e268cfc3df4305f0d
1 {lib, stdenv, fetchurl}:
3 stdenv.mkDerivation rec {
4   pname = "sdparm";
5   version = "1.12";
7   src = fetchurl {
8     url = "http://sg.danny.cz/sg/p/${pname}-${version}.tar.xz";
9     sha256 = "sha256-xMnvr9vrZi4vlxJwfsSQkyvU0BC7ESmueplSZUburb4=";
10   };
12   meta = with lib; {
13     homepage = "http://sg.danny.cz/sg/sdparm.html";
14     description = "Utility to access SCSI device parameters";
15     license = licenses.bsd3;
16     platforms = with platforms; linux;
17   };