6 stdenvNoCC.mkDerivation rec {
8 inherit (raspa) version src;
10 outputs = [ "out" "doc" ];
14 mkdir -p "$out/share/raspa"
15 mv examples "$out/share/raspa"
16 mkdir -p "$doc/share/raspa"
17 mv -T "Docs" "$doc/share/raspa/doc"
21 # Keep the shebangs of the examples from being patched
22 dontPatchShebangs = true;
25 inherit (raspa.meta) homepage license maintainers;
26 description = "Example packs and documentation of RASPA";
27 outputsToInstall = [ "out" "doc" ];
28 platforms = lib.platforms.all;