mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
57 lines
991 B
Nix
57 lines
991 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, pkg-config
|
|
, bison
|
|
, binutils
|
|
, binutils-unwrapped
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "myrddin";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "mc";
|
|
owner = "oridb";
|
|
rev = "r${version}";
|
|
sha256 = "7ImjiG/rIKGPHq3Vh/mftY7pqw/vfOxD3LJeT87HmCk=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
bison
|
|
pkg-config
|
|
makeWrapper
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace mk/c.mk \
|
|
--replace "-Werror" ""
|
|
'';
|
|
|
|
buildPhase = ''
|
|
make bootstrap
|
|
make
|
|
'';
|
|
|
|
postInstall = ''
|
|
for b in $out/bin/*; do
|
|
wrapProgram $b --prefix PATH : $out/bin:${lib.makeBinPath [ binutils ]}
|
|
done
|
|
'';
|
|
|
|
checkPhase = ''
|
|
make check
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = with lib; {
|
|
description = "Systems language that is both powerful and fun to use";
|
|
homepage = "https://myrlang.org/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ luc65r ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|