biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / applications / science / molecular-dynamics / raspa / data.nix
blob3361393eef158f2c361e37dd8d26f1e3b003544f
1 { lib
2 , stdenvNoCC
3 , raspa
4 }:
6 stdenvNoCC.mkDerivation rec {
7   pname = "raspa-data";
8   inherit (raspa) version src;
10   outputs = [ "out" "doc" ];
12   installPhase = ''
13     runHook preInstall
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"
18     runHook postInstall
19   '';
21   # Keep the shebangs of the examples from being patched
22   dontPatchShebangs = true;
24   meta = with lib; {
25     inherit (raspa.meta) homepage license maintainers;
26     description = "Example packs and documentation of RASPA";
27     outputsToInstall = [ "out" "doc" ];
28     platforms = lib.platforms.all;
29   };