evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ma / maiko / package.nix
blob924bd2db4855191f660ab3d888db8651a82b4ceb
1 { lib, stdenv, fetchFromGitHub, cmake, xorg }:
3 stdenv.mkDerivation rec {
4   pname = "maiko";
5   version = "2021-04-14";
6   src = fetchFromGitHub {
7     owner = "Interlisp";
8     repo = "maiko";
9     rev = "91fe7d51f9d607bcedde0e78e435ee188a8c84c0";
10     hash = "sha256-Y+ngep/xHw6RCU8XVRYSWH6S+9hJ74z50pGpIqS2CjM=";
11   };
12   nativeBuildInputs = [ cmake ];
13   buildInputs = [ xorg.libX11 ];
14   installPhase = ''
15     runHook preInstall
16     find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \;
17     runHook postInstall
18   '';
19   meta = with lib; {
20     description = "Medley Interlisp virtual machine";
21     homepage = "https://interlisp.org/";
22     changelog = "https://github.com/Interlisp/maiko/releases";
23     license = licenses.mit;
24     maintainers = with maintainers; [ ehmry ];
25     inherit (xorg.libX11.meta) platforms;
26   };