8 lines
142 B
Nix
8 lines
142 B
Nix
with import <nixpkgs> {};
|
|
stdenv.mkDerivation {
|
|
name = "env";
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [
|
|
cryptsetup
|
|
];
|
|
}
|