pforth: 1.28.0 -> 2.0.1
This commit is contained in:
parent
0aef019111
commit
8ba006e057
1 changed files with 19 additions and 19 deletions
|
@ -1,36 +1,36 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, fetchpatch }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
version = "28";
|
|
||||||
pname = "pforth";
|
pname = "pforth";
|
||||||
|
version = "2.0.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "philburk";
|
owner = "philburk";
|
||||||
repo = "pforth";
|
repo = "pforth";
|
||||||
rev = "9190005e32c6151b76ac707b30eeb4d5d9dd1d36";
|
rev = "v${finalAttrs.version}";
|
||||||
sha256 = "0k3pmcgybsnwrxy75piyb2420r8d4ij190606js32j99062glr3x";
|
hash = "sha256-vEjFeHSJl+yAtatYJEnu+r9hmOr/kZOgIbSUXR/c8WU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
dontConfigure = true;
|
||||||
(fetchpatch {
|
|
||||||
name = "gnumake-4.3-fix.patch";
|
|
||||||
url = "https://github.com/philburk/pforth/commit/457cb99f57292bc855e53abcdcb7b12d6681e847.patch";
|
|
||||||
sha256 = "0x1bwx3pqb09ddjhmdli47lnk1ys4ny42819g17kfn8nkjs5hbx7";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
makeFlags = [ "SRCDIR=." ];
|
preBuild = ''
|
||||||
makefile = "build/unix/Makefile";
|
cd platforms/unix
|
||||||
|
'';
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
install -Dm755 pforth_standalone $out/bin/pforth
|
install -Dm755 pforth_standalone $out/bin/pforth
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Portable ANSI style Forth written in ANSI C";
|
|
||||||
homepage = "http://www.softsynth.com/pforth/";
|
homepage = "http://www.softsynth.com/pforth/";
|
||||||
license = lib.licenses.publicDomain;
|
description = "Portable Portable ANS-like Forth written in ANSI 'C'";
|
||||||
|
changelog = "https://github.com/philburk/pforth/blob/v${finalAttrs.version}/RELEASES.md";
|
||||||
|
license = lib.licenses.bsd0;
|
||||||
|
maintainers = with lib.maintainers; [ AndersonTorres yrashk ];
|
||||||
platforms = lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ yrashk ];
|
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
# TODO: option for install the non-standalone executable
|
||||||
|
|
Loading…
Reference in a new issue