mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-01-04 08:56:34 +01:00
fix
This commit is contained in:
parent
a4c17f7eba
commit
edf32110f7
1 changed files with 8 additions and 0 deletions
|
@ -77,6 +77,10 @@
|
|||
nativeBuildInputs = [
|
||||
pkgs.unzip
|
||||
];
|
||||
unpackPhase = ''
|
||||
mkdir -p $out
|
||||
unzip $src "madara-child/*" -d $out
|
||||
'';
|
||||
installPhase = "mkdir -p $out; cp -R * $out/";
|
||||
};
|
||||
madara-core = pkgs.stdenv.mkDerivation rec {
|
||||
|
@ -103,6 +107,10 @@
|
|||
nativeBuildInputs = [
|
||||
pkgs.unzip
|
||||
];
|
||||
unpackPhase = ''
|
||||
mkdir -p $out
|
||||
unzip $src "madara-shortcodes/*" -d $out
|
||||
'';
|
||||
installPhase = "mkdir -p $out; cp -R * $out/";
|
||||
};
|
||||
option-tree-lean = pkgs.stdenv.mkDerivation rec {
|
||||
|
|
Loading…
Reference in a new issue