-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #215 from Jovian-Experiments/updates/galileo-release
Updates for 20231115.1000
- Loading branch information
Showing
19 changed files
with
253 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ lib | ||
, stdenv | ||
, fetchFromGitHub | ||
, meson | ||
, ninja | ||
}: | ||
|
||
stdenv.mkDerivation rec { | ||
pname = "galileo-mura"; | ||
version = "0.3"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "Jovian-Experiments"; | ||
repo = "galileo-mura"; | ||
rev = "v${version}"; | ||
hash = "sha256-mO43q3oZPGrPjQyFFJLjVgZZTyxhn+8Szcn2FzGvkHk="; | ||
}; | ||
|
||
nativeBuildInputs = [ | ||
meson | ||
ninja | ||
]; | ||
|
||
meta = with lib; { | ||
description = ""; | ||
homepage = "https://github.com/Jovian-Experiments/galileo-mura"; | ||
license = licenses.mit; | ||
mainProgram = "galileo-mura"; | ||
platforms = platforms.all; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="firmware"> | ||
<id>value.Jupiter.BIOS.firmware</id> | ||
<name>Steam Deck</name> | ||
<id>unofficial.valve.steamdeck.@[email protected]</id> | ||
<name>Steam Deck (@model@)</name> | ||
<provides> | ||
<firmware type="flashed">bbb1cf06-f7b9-4466-adcc-6b8815bd99e6</firmware> | ||
<firmware type="flashed">@guid@</firmware> | ||
</provides> | ||
<custom> | ||
<value key="LVFS::UpdateProtocol">org.uefi.capsule</value> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
{ linux-firmware, fetchFromGitHub }: | ||
|
||
linux-firmware.overrideAttrs(_: { | ||
linux-firmware.overrideAttrs(_: rec { | ||
version = "20231113.1"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "Jovian-Experiments"; | ||
repo = "linux-firmware"; | ||
rev = "jupiter-20230420"; | ||
hash = "sha256-ys/7G+JsiuKQo9aL5MZjs4NxqDjK2bdJkLRJaoNeIDM="; | ||
rev = "jupiter-${version}"; | ||
hash = "sha256-aaTFdotKyTjPK9iuPs91Dqvk9521E4VIcggxYIRlffQ="; | ||
}; | ||
|
||
outputHash = "sha256-eEeBS95gI7G9KVpc9boqRAdecrPc0EsfFD2nhh63fCY="; | ||
outputHash = "sha256-puzVKvwV0fCDz+M6cm18Xq4W0qAFgtFu3okSnsj9RNU="; | ||
}) |
Oops, something went wrong.