2023-05-25 15:21:01 +02:00
|
|
|
# vim: set noet sw=2 ts=2 sts=2:
|
|
|
|
{
|
|
|
|
description = "nitropy cli";
|
|
|
|
inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-23.05-small;
|
2023-05-25 17:18:01 +02:00
|
|
|
outputs = { self, nixpkgs }: rec {
|
|
|
|
nitropy =
|
2023-05-25 15:21:01 +02:00
|
|
|
# Notice the reference to nixpkgs here.
|
|
|
|
with import nixpkgs {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
|
|
|
callPackage ./pynitrokey.nix { };
|
2023-05-25 17:18:01 +02:00
|
|
|
defaultPackage.x86_64-linux = nitropy;
|
2023-05-25 15:21:01 +02:00
|
|
|
};
|
|
|
|
}
|