mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
maker-panel: init at 0.12.4
This commit is contained in:
parent
952e464bbf
commit
df6d1ee32a
2 changed files with 39 additions and 0 deletions
37
pkgs/tools/misc/maker-panel/default.nix
Normal file
37
pkgs/tools/misc/maker-panel/default.nix
Normal file
|
@ -0,0 +1,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; [ twitchyliquid64 ];
|
||||
};
|
||||
}
|
|
@ -19819,6 +19819,8 @@ in
|
|||
|
||||
mailman-web = with python3.pkgs; toPythonApplication mailman-web;
|
||||
|
||||
maker-panel = callPackage ../tools/misc/maker-panel { };
|
||||
|
||||
mastodon = callPackage ../servers/mastodon { };
|
||||
|
||||
materialize = callPackage ../servers/sql/materialize {
|
||||
|
|
Loading…
Reference in a new issue