mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
shen-sources: init at 22.3
This commit is contained in:
parent
d6d6d6030d
commit
5303493efc
28
pkgs/development/interpreters/shen-sources/default.nix
Normal file
28
pkgs/development/interpreters/shen-sources/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user