Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ in
pgdiff = callPackage ./pgdiff { };
vkv = callPackage ./vkv { };
quakejs = callPackage ./quakejs { };
podman-bootc = callPackage ./podman-bootc { };
tv-sony = callPackage ./tv-sony { };
simple-proxy = callPackage ./simple-proxy { };
dreamm = callPackage ./dreamm { };
Expand Down
18 changes: 13 additions & 5 deletions pkgs/dreamm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
stdenv,
fetchzip,
fetchurl,
autoAddDriverRunpath,
autoPatchelfHook,
makeDesktopItem,
copyDesktopItems,
alsa-lib,
curl,
SDL2,
libgbm,
libxcb,
}:

let
Expand All @@ -20,7 +23,7 @@ let
in
stdenv.mkDerivation rec {
pname = "dreamm";
version = "3.0.3";
version = "4.0b17";

src =
let
Expand All @@ -31,17 +34,18 @@ stdenv.mkDerivation rec {
aarch64-linux = "linux-arm64";
};
hash = selectSystem {
x86_64-linux = "sha256-lVgt0SVm8ml1nFTDXnXpaYRI+1HDVwtLIztAq+re00E=";
aarch64-linux = "sha256-zG/8ie3p9WI7D5ukVp8cQm+zhWysnzQ8qG5vrHIdyLs=";
x86_64-linux = "sha256-FY7wCiNv86NeKkV/nB+Ty5yAIO7VClNm3rpRaDqjie8=";
aarch64-linux = "";
};
in
fetchzip {
url = "https://aarongiles.com/dreamm/releases/dreamm-${version}-${suffix}.tgz";
url = "https://aarongiles.com/dreamm/releases/4.0/dreamm-${version}-${suffix}.tgz";
inherit hash;
stripRoot = false;
};

nativeBuildInputs = [
autoAddDriverRunpath
autoPatchelfHook
copyDesktopItems
];
Expand All @@ -52,10 +56,14 @@ stdenv.mkDerivation rec {
SDL2
];

runtimeDependencies = [
libgbm
libxcb
];

installPhase = ''
runHook preInstall
install -D dreamm $out/bin/dreamm
install -D mt32emu-dreamm.so $out/bin/mt32emu-dreamm.so
runHook postInstall
'';

Expand Down
52 changes: 0 additions & 52 deletions pkgs/podman-bootc/default.nix

This file was deleted.