ocamlPackages.ocsigen_server: fix install

main
Vincent Laporte 2 years ago
parent dc5859ef7a
commit b0a3ceae85
No known key found for this signature in database
GPG Key ID: EBD582ADDDB1F81F
  1. 6
      pkgs/development/ocaml-modules/ocsigen-server/default.nix

@ -37,7 +37,7 @@ buildDunePackage rec {
ocaml_pcre xml-light
];
configureFlags = [ "--root $(out)" "--prefix /" ];
configureFlags = [ "--root $(out)" "--prefix /" "--temproot ''" ];
dontAddPrefix = true;
dontAddStaticConfigureFlags = true;
@ -47,6 +47,10 @@ buildDunePackage rec {
make -C src confs
'';
postInstall = ''
make install.files
'';
postFixup =
''
rm -rf $out/var/run

Loading…
Cancel
Save