Merge pull request #91671 from david-sawatzke/easypdkprog

easypdkprog: init at 1.2
This commit is contained in:
Daniël de Kok 2020-06-28 18:27:26 +02:00 committed by GitHub
commit 96ccfbaf44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 35 additions and 0 deletions

View file

@ -1788,6 +1788,12 @@
email = "christoph.senjak@googlemail.com";
name = "Christoph-Simon Senjak";
};
david-sawatzke = {
email = "d-nix@sawatzke.dev";
github = "david-sawatzke";
githubId = 11035569;
name = "David Sawatzke";
};
david50407 = {
email = "me@davy.tw";
github = "david50407";

View 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;
};
}

View file

@ -10446,6 +10446,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 { };