shen-sources: init at 22.3

This commit is contained in:
Ben Sima 2020-05-25 21:07:42 -07:00
parent d6d6d6030d
commit 5303493efc
2 changed files with 30 additions and 0 deletions

View File

@ -0,0 +1,28 @@
{ stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
name = "shen-sources-${version}";
version = "22.3";
src = fetchurl {
url = "https://github.com/Shen-Language/shen-sources/releases/download/shen-${version}/ShenOSKernel-${version}.tar.gz";
sha256 = "16jaliga3bia0f8c8ja1y22wanbnbriv31qfqdc87a4p4dx9c77q";
};
buildInputs = [];
buildPhase = "";
installPhase = ''
mkdir -p $out
cp . $out -R
'';
meta = with stdenv.lib; {
homepage = https://shenlanguage.org;
description = "Source code for the Shen Language";
platforms = platforms.linux;
maintainers = with maintainers; [ bsima ];
license = licenses.bsd3;
};
}

View File

@ -6587,6 +6587,8 @@ in
schema2ldif = callPackage ../tools/text/schema2ldif { };
shen-sources = callPackage ../development/interpreters/shen-sources { };
shocco = callPackage ../tools/text/shocco { };
shopify-themekit = callPackage ../development/web/shopify-themekit { };