lol

ott: 0.30 → 0.31

authored by

Vincent Laporte and committed by
Vincent Laporte
cc4a33d7 c814b0ef

+4 -9
+4 -9
pkgs/applications/science/logic/ott/default.nix
··· 1 - { stdenv, fetchFromGitHub, pkgconfig, ocaml }: 1 + { stdenv, fetchFromGitHub, pkgconfig, ocaml, opaline }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "ott"; ··· 11 11 sha256 = "0l81126i2qkz11fs5yrjdgymnqgjcs5avb7f951h61yh1s68jpnn"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig ]; 14 + nativeBuildInputs = [ pkgconfig opaline ]; 15 15 buildInputs = [ ocaml ]; 16 16 17 - installPhase = '' 18 - mkdir -p $out/bin 19 - cp src/ott.opt $out/bin 20 - ln -s $out/bin/ott.opt $out/bin/ott 17 + installTargets = "ott.install"; 21 18 22 - mkdir -p $out/share/emacs/site-lisp 23 - cp emacs/ott-mode.el $out/share/emacs/site-lisp 24 - ''; 19 + postInstall = "opaline -prefix $out"; 25 20 26 21 meta = { 27 22 description = "Ott: tool for the working semanticist";