about summary refs log tree commit diff
path: root/pkgs/tools/misc/maker-panel/default.nix
blob: 12a5d46547a2cd5da7b0fac4978d77028a28f0fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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";
  };

  cargoSha256 = "1ar62dn0khlbm47chakrsrxd1y76gpq0sql4g9j7dqqrvkavgd7w";

  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 = with maintainers; [ ];
  };
}