Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
8 lines
152 B
Nix
8 lines
152 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "septastic_env";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
cryptsetup
|
|
];
|
|
}
|