8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
29 lines
589 B
Nix
29 lines
589 B
Nix
{ pkgs ? (import <nixpkgs> {}), variant }:
|
|
|
|
with pkgs;
|
|
|
|
let
|
|
|
|
primary-src = callPackage (./. + "/src-${variant}/primary.nix") {};
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "generate-libreoffice-srcs-shell";
|
|
|
|
buildCommand = "exit 1";
|
|
|
|
downloadList = stdenv.mkDerivation {
|
|
name = "libreoffice-${primary-src.version}-download-list";
|
|
inherit (primary-src) src version;
|
|
builder = ./download-list-builder.sh;
|
|
};
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
shellHook = ''
|
|
function generate {
|
|
python3 generate-libreoffice-srcs.py ${variant} > src-${variant}/download.nix
|
|
}
|
|
'';
|
|
}
|