summaryrefslogtreecommitdiffstats
path: root/pkgs/development/interpreters
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-09-08 20:43:56 -0500
committerGitHub <noreply@github.com>2021-09-08 20:43:56 -0500
commit4dc42455c06c5a17886c42090578a9889258532d (patch)
treeb158a53c5a047983dfeaf67cdd69cee0824541ca /pkgs/development/interpreters
parentdbf66bf852a6e0d9f0c6717bcd101ea4deb6cefa (diff)
parentfb1b0dc6cd1e2b4357c79983e12d62619cb4789b (diff)
Merge pull request #136658 from marsam/update-shen-sources
shen-sources: 22.3 -> 22.4
Diffstat (limited to 'pkgs/development/interpreters')
-rw-r--r--pkgs/development/interpreters/shen-sources/default.nix16
1 files changed, 9 insertions, 7 deletions
diff --git a/pkgs/development/interpreters/shen-sources/default.nix b/pkgs/development/interpreters/shen-sources/default.nix
index 84839cf42dee..99e72fbea112 100644
--- a/pkgs/development/interpreters/shen-sources/default.nix
+++ b/pkgs/development/interpreters/shen-sources/default.nix
@@ -1,26 +1,28 @@
-{ lib, stdenv
+{ lib
+, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
- name = "shen-sources-${version}";
- version = "22.3";
+ pname = "shen-sources";
+ version = "22.4";
src = fetchurl {
url = "https://github.com/Shen-Language/shen-sources/releases/download/shen-${version}/ShenOSKernel-${version}.tar.gz";
- sha256 = "16jaliga3bia0f8c8ja1y22wanbnbriv31qfqdc87a4p4dx9c77q";
+ sha256 = "1wlyh4rbzr615iykq1s779jvq28812rb4dascx1kzpakhw8z0260";
};
- buildInputs = [];
- buildPhase = "";
+ dontBuild = true;
+
installPhase = ''
mkdir -p $out
cp . $out -R
'';
meta = with lib; {
- homepage = https://shenlanguage.org;
+ homepage = "https://shenlanguage.org";
description = "Source code for the Shen Language";
+ changelog = "https://github.com/Shen-Language/shen-sources/raw/shen-${version}/CHANGELOG.md";
platforms = platforms.all;
maintainers = with maintainers; [ bsima ];
license = licenses.bsd3;