nixpkgs/pkgs/applications/office/libreoffice/still-gen-shell.nix

28 lines
522 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> {}) }:
with pkgs;
let
primary-src = callPackage ./still-primary-src.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;
};
shellHook = ''
function generate {
./generate-libreoffice-srcs.sh | tee libreoffice-srcs-still.nix
}
'';
}