Skip to content

Commit

Permalink
add deemix-gui-bin
Browse files Browse the repository at this point in the history
  • Loading branch information
bandithedoge committed Dec 30, 2023
1 parent ad05f0f commit 279a19d
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
17 changes: 17 additions & 0 deletions pkgs/deemix-gui-bin/_sources/generated.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"deemix-gui-bin": {
"cargoLocks": null,
"date": null,
"extract": null,
"name": "deemix-gui-bin",
"passthru": null,
"pinned": false,
"src": {
"name": null,
"sha256": "sha256-e2neemsAzGniBpXIPYbKk5LQHoYLvFj5/8QszCcoTYM=",
"type": "url",
"url": "https://archive.org/download/deemix/gui/linux-x64-latest.AppImage"
},
"version": "3.6.6"
}
}
12 changes: 12 additions & 0 deletions pkgs/deemix-gui-bin/_sources/generated.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# This file was generated by nvfetcher, please do not modify it manually.
{ fetchgit, fetchurl, fetchFromGitHub, dockerTools }:
{
deemix-gui-bin = {
pname = "deemix-gui-bin";
version = "3.6.6";
src = fetchurl {
url = "https://archive.org/download/deemix/gui/linux-x64-latest.AppImage";
sha256 = "sha256-e2neemsAzGniBpXIPYbKk5LQHoYLvFj5/8QszCcoTYM=";
};
};
}
16 changes: 16 additions & 0 deletions pkgs/deemix-gui-bin/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
pkgs,
sources,
...
}:
pkgs.appimageTools.wrapType2 {
name = "deemix-gui";
inherit (sources.deemix-gui-bin) src;

meta = with pkgs.lib; {
description = "An electron app that wraps deemix-webui and lets you use the deemix-js library";
homepage = "https://gitlab.com/RemixDev/deemix-gui";
license = licenses.gpl3;
platforms = ["x86_64-linux"];
};
}
3 changes: 3 additions & 0 deletions pkgs/deemix-gui-bin/nvfetcher.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[deemix-gui-bin]
src.manual = "3.6.6"
fetch.url = "https://archive.org/download/deemix/gui/linux-x64-latest.AppImage"
1 change: 1 addition & 0 deletions pkgs/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ in {
basiliskii-bin = callPackage' ./basiliskii-bin;
cardinal = callPackage' ./cardinal;
cinelerra-gg-bin = callPackage' ./cinelerra-gg-bin;
deemix-gui-bin = callPackage' ./deemix-gui-bin;
distrho-ports = callPackage' ./distrho-ports;
dpf-plugins = callPackage' ./dpf-plugins;
fennel-language-server = callPackage' ./fennel-language-server;
Expand Down

0 comments on commit 279a19d

Please sign in to comment.