2021-01-23 13:15:07 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libX11, libXext, makeWrapper, ncurses, cmake }:
|
2014-07-04 04:19:08 +01:00
|
|
|
|
2020-12-31 12:38:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-10-02 09:31:30 +01:00
|
|
|
# The Self wrapper stores source in $XDG_DATA_HOME/self or ~/.local/share/self
|
2014-07-04 04:19:08 +01:00
|
|
|
# so that it can be written to when using the Self transposer. Running 'Self'
|
|
|
|
# after installation runs without an image. You can then build a Self image with:
|
|
|
|
# $ cd ~/.local/share/self/objects
|
2020-10-02 09:31:30 +01:00
|
|
|
# $ Self
|
2014-07-04 04:19:08 +01:00
|
|
|
# > 'worldBuilder.self' _RunScript
|
|
|
|
#
|
|
|
|
# This image can later be started with:
|
|
|
|
# $ Self -s myimage.snap
|
|
|
|
#
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "self";
|
2020-12-31 12:38:30 +00:00
|
|
|
version = "2017.1";
|
2014-07-04 04:19:08 +01:00
|
|
|
|
2020-12-31 12:38:30 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "russellallen";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
|
|
|
sha256 = "C/1Q6yFmoXx2F97xuvkm8DxFmmvuBS7uYZOxq/CRNog=";
|
2014-07-04 04:19:08 +01:00
|
|
|
};
|
|
|
|
|
2020-12-31 12:38:30 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
|
|
|
buildInputs = [ ncurses libX11 libXext ];
|
2014-07-04 04:19:08 +01:00
|
|
|
|
|
|
|
selfWrapper = ./self;
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p "$out"/bin
|
|
|
|
cp ./vm/Self "$out"/bin/Self.wrapped
|
|
|
|
mkdir -p "$out"/share/self
|
|
|
|
cp -r ../objects "$out"/share/self/
|
|
|
|
makeWrapper $selfWrapper $out/bin/Self \
|
|
|
|
--set SELF_ROOT "$out"
|
|
|
|
'';
|
|
|
|
|
2021-01-23 13:15:07 +00:00
|
|
|
meta = with lib; {
|
2014-07-04 04:19:08 +01:00
|
|
|
description = "A prototype-based dynamic object-oriented programming language, environment, and virtual machine";
|
2020-10-02 08:58:50 +01:00
|
|
|
homepage = "https://selflanguage.org/";
|
2020-12-31 12:38:30 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.doublec ];
|
|
|
|
platforms = platforms.linux;
|
2014-07-04 04:19:08 +01:00
|
|
|
};
|
|
|
|
}
|