571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
29 lines
835 B
Nix
29 lines
835 B
Nix
{ 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.hostPlatform.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";
|
|
mainProgram = "easypdkprog";
|
|
homepage = "https://github.com/free-pdk/easy-pdk-programmer-software";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ david-sawatzke ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|