nixpkgs/pkgs/by-name/ma/maker-panel/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

40 lines
890 B
Nix

{ lib
, fetchFromGitHub
, rustPlatform
, go-md2man
, installShellFiles
}:
rustPlatform.buildRustPackage rec {
pname = "maker-panel";
version = "0.12.4";
src = fetchFromGitHub {
owner = "twitchyliquid64";
repo = "maker-panel";
rev = version;
sha256 = "0dlsy0c46781sb652kp80pvga7pzx6xla64axir92fcgg8k803bi";
};
cargoHash = "sha256-Ygya/9keRyIQyjrO6medtcXww9LMG3ne6I/8q35lJPo=";
cargoPatches = [ ./update-gerber-types-to-0.3.patch ];
nativeBuildInputs = [ go-md2man installShellFiles ];
postBuild = ''
go-md2man --in docs/spec-reference.md --out maker-panel.5
'';
postInstall = ''
installManPage maker-panel.5
'';
meta = with lib; {
description = "Make mechanical PCBs by combining shapes together";
homepage = "https://github.com/twitchyliquid64/maker-panel";
license = with licenses; [ mit ];
maintainers = [ ];
};
}