zon2nix: init at 0.1.1

https://github.com/figsoda/zon2nix
This commit is contained in:
figsoda 2023-08-08 18:48:34 -04:00
parent 59eb02116f
commit f61f084d62
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,38 @@
{ lib
, stdenv
, fetchFromGitHub
, makeBinaryWrapper
, zig_0_11
, nix
}:
stdenv.mkDerivation rec {
pname = "zon2nix";
version = "0.1.1";
src = fetchFromGitHub {
owner = "figsoda";
repo = "zon2nix";
rev = "v${version}";
hash = "sha256-VzlLoToZ+5beHt9mFsuCxlSZ8RrBodPO6YKtsugAaik=";
};
nativeBuildInputs = [
makeBinaryWrapper
zig_0_11.hook
];
postInstall = ''
wrapProgram $out/bin/zon2nix \
--prefix PATH : ${lib.makeBinPath [ nix ]}
'';
meta = with lib; {
description = "Convert the dependencies in `build.zig.zon` to a Nix expression";
homepage = "https://github.com/figsoda/zon2nix";
changelog = "https://github.com/figsoda/zon2nix/blob/${src.rev}/CHANGELOG.md";
license = licenses.mpl20;
maintainers = with maintainers; [ figsoda ];
inherit (zig_0_11.meta) platforms;
};
}

View file

@ -20287,6 +20287,8 @@ with pkgs;
tockloader = callPackage ../development/tools/misc/tockloader { };
zon2nix = callPackage ../tools/nix/zon2nix { };
### DEVELOPMENT / LIBRARIES
a52dec = callPackage ../development/libraries/a52dec { };