mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
easypdk: init at 1.2
This commit is contained in:
parent
7706c657b0
commit
a531363179
2 changed files with 29 additions and 0 deletions
27
pkgs/development/tools/misc/easypdkprog/default.nix
Normal file
27
pkgs/development/tools/misc/easypdkprog/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, lib, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "easypdkprog";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "free-pdk";
|
||||
repo = "easy-pdk-programmer-software";
|
||||
rev = version;
|
||||
sha256 = "06bn86rd57ff567l0ipx38raih0zll3y16lg5fpn7c601a9jldps";
|
||||
};
|
||||
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -10433,6 +10433,8 @@ in
|
|||
|
||||
drush = callPackage ../development/tools/misc/drush { };
|
||||
|
||||
easypdkprog = callPackage ../development/tools/misc/easypdkprog { };
|
||||
|
||||
editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { };
|
||||
|
||||
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };
|
||||
|
|
Loading…
Reference in a new issue