lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

shen-sources: 22.3 -> 22.4

+9 -7
+9 -7
pkgs/development/interpreters/shen-sources/default.nix
··· 1 - { lib, stdenv 1 + { lib 2 + , stdenv 2 3 , fetchurl 3 4 }: 4 5 5 6 stdenv.mkDerivation rec { 6 - name = "shen-sources-${version}"; 7 - version = "22.3"; 7 + pname = "shen-sources"; 8 + version = "22.4"; 8 9 9 10 src = fetchurl { 10 11 url = "https://github.com/Shen-Language/shen-sources/releases/download/shen-${version}/ShenOSKernel-${version}.tar.gz"; 11 - sha256 = "16jaliga3bia0f8c8ja1y22wanbnbriv31qfqdc87a4p4dx9c77q"; 12 + sha256 = "1wlyh4rbzr615iykq1s779jvq28812rb4dascx1kzpakhw8z0260"; 12 13 }; 13 14 14 - buildInputs = []; 15 - buildPhase = ""; 15 + dontBuild = true; 16 + 16 17 installPhase = '' 17 18 mkdir -p $out 18 19 cp . $out -R 19 20 ''; 20 21 21 22 meta = with lib; { 22 - homepage = https://shenlanguage.org; 23 + homepage = "https://shenlanguage.org"; 23 24 description = "Source code for the Shen Language"; 25 + changelog = "https://github.com/Shen-Language/shen-sources/raw/shen-${version}/CHANGELOG.md"; 24 26 platforms = platforms.all; 25 27 maintainers = with maintainers; [ bsima ]; 26 28 license = licenses.bsd3;