mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
maiko: 2021-04-14 -> 250201-55e20ea9
This commit is contained in:
parent
4749dee202
commit
70500a01c7
1 changed files with 13 additions and 8 deletions
|
@ -6,28 +6,33 @@
|
||||||
xorg,
|
xorg,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "maiko";
|
pname = "maiko";
|
||||||
version = "2021-04-14";
|
version = "250201-55e20ea9";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Interlisp";
|
owner = "Interlisp";
|
||||||
repo = "maiko";
|
repo = "maiko";
|
||||||
rev = "91fe7d51f9d607bcedde0e78e435ee188a8c84c0";
|
tag = "maiko-${finalAttrs.version}";
|
||||||
hash = "sha256-Y+ngep/xHw6RCU8XVRYSWH6S+9hJ74z50pGpIqS2CjM=";
|
hash = "sha256-7TmMvDaSmdbMa2fVbETRcyKndGM3CuaxI2cJj00WlSc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
buildInputs = [ xorg.libX11 ];
|
buildInputs = [ xorg.libX11 ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \;
|
find . -maxdepth 1 -executable -type f -exec install -Dt $out/bin '{}' \;
|
||||||
runHook postInstall
|
runHook postInstall
|
||||||
'';
|
'';
|
||||||
meta = with lib; {
|
|
||||||
|
meta = {
|
||||||
description = "Medley Interlisp virtual machine";
|
description = "Medley Interlisp virtual machine";
|
||||||
homepage = "https://interlisp.org/";
|
homepage = "https://interlisp.org/";
|
||||||
changelog = "https://github.com/Interlisp/maiko/releases";
|
changelog = "https://github.com/Interlisp/maiko/releases";
|
||||||
license = licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = with maintainers; [ ehmry ];
|
maintainers = with lib.maintainers; [ ehmry ];
|
||||||
inherit (xorg.libX11.meta) platforms;
|
inherit (xorg.libX11.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue