mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
96d41e393d
It's sad, but he's been inactive for the last five years. Keeping such people in meta.maintainers is counter-productive.
18 lines
408 B
Nix
18 lines
408 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "sg3_utils-1.42";
|
|
|
|
src = fetchurl {
|
|
url = "http://sg.danny.cz/sg/p/${name}.tgz";
|
|
sha256 = "1wwy7iiz1lvc32c777yd4vp0c0dqfdlm5jrsm3aa62xx141pmjqx";
|
|
};
|
|
|
|
meta = {
|
|
homepage = http://sg.danny.cz/sg/;
|
|
description = "Utilities that send SCSI commands to devices";
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|