shen-sources: 22.3 -> 22.4

This commit is contained in:
Mario Rodas 2021-09-01 04:20:00 +00:00
parent d431839ab4
commit fb1b0dc6cd

View File

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