mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
Merge pull request #274821 from alyssais/zbus-xmlgen
zbus-xmlgen: init at 3.1.1
This commit is contained in:
commit
e33bfdfbfd
28
pkgs/by-name/zb/zbus-xmlgen/package.nix
Normal file
28
pkgs/by-name/zb/zbus-xmlgen/package.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, rustPlatform, fetchCrate, makeBinaryWrapper, rustfmt }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "zbus_xmlgen";
|
||||
version = "3.1.1";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-vaefyfasOLFFYWPjSJFgjIFkvnRiJVe/GLYUQxUYlt0=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-WXJ49X4B2aNy1zPbTllIzRhZJvF+RwfQ0Hhm/D+LQfk=";
|
||||
|
||||
nativeBuildInputs = [ makeBinaryWrapper ];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/zbus-xmlgen \
|
||||
--prefix PATH : ${lib.makeBinPath [ rustfmt ]}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://crates.io/crates/zbus_xmlgen";
|
||||
description = "D-Bus XML interface Rust code generator";
|
||||
mainProgram = "zbus-xmlgen";
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue