mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
Merge pull request #91671 from david-sawatzke/easypdkprog
easypdkprog: init at 1.2
This commit is contained in:
commit
96ccfbaf44
@ -1788,6 +1788,12 @@
|
|||||||
email = "christoph.senjak@googlemail.com";
|
email = "christoph.senjak@googlemail.com";
|
||||||
name = "Christoph-Simon Senjak";
|
name = "Christoph-Simon Senjak";
|
||||||
};
|
};
|
||||||
|
david-sawatzke = {
|
||||||
|
email = "d-nix@sawatzke.dev";
|
||||||
|
github = "david-sawatzke";
|
||||||
|
githubId = 11035569;
|
||||||
|
name = "David Sawatzke";
|
||||||
|
};
|
||||||
david50407 = {
|
david50407 = {
|
||||||
email = "me@davy.tw";
|
email = "me@davy.tw";
|
||||||
github = "david50407";
|
github = "david50407";
|
||||||
|
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;
|
||||||
|
};
|
||||||
|
}
|
@ -10446,6 +10446,8 @@ in
|
|||||||
|
|
||||||
drush = callPackage ../development/tools/misc/drush { };
|
drush = callPackage ../development/tools/misc/drush { };
|
||||||
|
|
||||||
|
easypdkprog = callPackage ../development/tools/misc/easypdkprog { };
|
||||||
|
|
||||||
editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { };
|
editorconfig-checker = callPackage ../development/tools/misc/editorconfig-checker { };
|
||||||
|
|
||||||
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };
|
editorconfig-core-c = callPackage ../development/tools/misc/editorconfig-core-c { };
|
||||||
|
Loading…
Reference in New Issue
Block a user