mirror of
https://github.com/vale981/binfootprint
synced 2025-03-04 08:41:41 -05:00
15 lines
365 B
Nix
15 lines
365 B
Nix
{
|
|
description = "binary representation for simple data structures";
|
|
inputs = {
|
|
utils.url = "github:vale981/hiro-flake-utils";
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { self, utils, nixpkgs, ... }:
|
|
(utils.lib.poetry2nixWrapper nixpkgs {
|
|
name = "binfootprint";
|
|
poetryArgs = {
|
|
projectDir = ./.;
|
|
};
|
|
});
|
|
}
|