mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
Merge pull request #45754 from Mic92/systemd-cryptsetup-generator
systemd-cryptsetup-generator: cryptsetup belongs to buildInputs
This commit is contained in:
commit
18eb2a07a6
1 changed files with 2 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
{ stdenv, systemd, cryptsetup }:
|
||||
|
||||
stdenv.lib.overrideDerivation systemd (p: {
|
||||
systemd.overrideAttrs (p: {
|
||||
version = p.version;
|
||||
name = "systemd-cryptsetup-generator-${p.version}";
|
||||
|
||||
nativeBuildInputs = p.nativeBuildInputs ++ [ cryptsetup ];
|
||||
buildInputs = p.buildInputs ++ [ cryptsetup ];
|
||||
outputs = [ "out" ];
|
||||
|
||||
buildPhase = ''
|
||||
|
|
Loading…
Reference in a new issue