uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
18
pkgs/tools/system/sg3_utils/default.nix
Normal file
18
pkgs/tools/system/sg3_utils/default.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sg3_utils";
|
||||
version = "1.47";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://sg.danny.cz/sg/p/sg3_utils-${version}.tgz";
|
||||
sha256 = "sha256-hnPH+sqEm2s0dkMy0qqR9y2wW/9zgruDbQaIeVGZw+E=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://sg.danny.cz/sg/";
|
||||
description = "Utilities that send SCSI commands to devices";
|
||||
platforms = platforms.linux;
|
||||
license = with licenses; [ bsd2 gpl2Plus ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue