binfootprint/flake.nix

16 lines
365 B
Nix
Raw Permalink Normal View History

2021-12-07 19:38:34 +01:00
{
description = "binary representation for simple data structures";
inputs = {
2021-12-09 13:18:10 +01:00
utils.url = "github:vale981/hiro-flake-utils";
2021-12-07 19:38:34 +01:00
nixpkgs.url = "nixpkgs/nixos-unstable";
};
2021-12-09 14:48:18 +01:00
outputs = { self, utils, nixpkgs, ... }:
(utils.lib.poetry2nixWrapper nixpkgs {
2021-12-08 15:27:02 +01:00
name = "binfootprint";
2021-12-09 13:18:10 +01:00
poetryArgs = {
projectDir = ./.;
};
});
2021-12-07 19:38:34 +01:00
}