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
27
pkgs/development/embedded/easypdkprog/default.nix
Normal file
27
pkgs/development/embedded/easypdkprog/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "easypdkprog";
|
||||
version = "1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "free-pdk";
|
||||
repo = "easy-pdk-programmer-software";
|
||||
rev = version;
|
||||
sha256 = "0hc3gdmn6l01z63hzzwdhbdyy288gh5v219bsfm8fb1498vpnd6f";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
install -Dm755 -t $out/bin easypdkprog
|
||||
'' + lib.optionalString stdenv.isLinux ''
|
||||
install -Dm644 -t $out/etc/udev/rules.d Linux_udevrules/70-stm32vcp.rules
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Read, write and execute programs on PADAUK microcontroller";
|
||||
homepage = "https://github.com/free-pdk/easy-pdk-programmer-software";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ david-sawatzke ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue