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
24
pkgs/development/tools/misc/cgdb/default.nix
Normal file
24
pkgs/development/tools/misc/cgdb/default.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchurl, ncurses, readline, flex, texinfo }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cgdb";
|
||||
version = "0.8.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://cgdb.me/files/${pname}-${version}.tar.gz";
|
||||
sha256 = "sha256-DTi1JNN3JXsQa61thW2K4zBBQOHuJAhTQ+bd8bZYEfE=";
|
||||
};
|
||||
|
||||
buildInputs = [ ncurses readline flex texinfo ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A curses interface to gdb";
|
||||
|
||||
homepage = "https://cgdb.github.io/";
|
||||
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
platforms = with platforms; linux ++ cygwin;
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue