Unfinished decker derivation
This commit is contained in:
44
derivations/decker/default.nix
Normal file
44
derivations/decker/default.nix
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchurl,
|
||||||
|
autoPatchelfHook,
|
||||||
|
pkgs,
|
||||||
|
gcc,
|
||||||
|
glib,
|
||||||
|
glibc,
|
||||||
|
zlib
|
||||||
|
}:
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "decker";
|
||||||
|
version = "0.13.4";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/decker-edu/decker/releases/download/v0.13.4/${pname}-v${version}-Linux-X64";
|
||||||
|
sha512 = "";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out
|
||||||
|
cp ${pname}-v${version}-Linux-X64 $out/bin/decker
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A tool to create interactive web-based presentations.";
|
||||||
|
homepage = "https://decker.cs.tu-dortmund.de";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = ["x86_64-linux"];
|
||||||
|
};
|
||||||
|
}
|
@ -13,4 +13,5 @@
|
|||||||
spotdl-4_1_6 = pkgs.callPackage ./spotdl-4_1_6 {};
|
spotdl-4_1_6 = pkgs.callPackage ./spotdl-4_1_6 {};
|
||||||
xdg-desktop-portal-termfilechooser = pkgs.callPackage ./xdg-desktop-portal-termfilechooser {};
|
xdg-desktop-portal-termfilechooser = pkgs.callPackage ./xdg-desktop-portal-termfilechooser {};
|
||||||
wiiu-downloader = pkgs.callPackage ./wiiu-downloader {};
|
wiiu-downloader = pkgs.callPackage ./wiiu-downloader {};
|
||||||
|
decker = pkgs.callPackage ./decker {};
|
||||||
}
|
}
|
||||||
|
@ -297,7 +297,8 @@ rec {
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
# CLI Tools
|
# CLI Tools
|
||||||
# bat # cat with wings (enabled as program)
|
# bat # cat with wings (enabled as program)
|
||||||
# exa # ls in cool (enabled as program)
|
# exa # ls in cool (enabled as program) # NOTE: Unmaintained
|
||||||
|
eza
|
||||||
# delta # diffier diff differ (enabled as program)
|
# delta # diffier diff differ (enabled as program)
|
||||||
# fzf # fuzzy find (enabled as program in fish module)
|
# fzf # fuzzy find (enabled as program in fish module)
|
||||||
tokei # Text file statistics in a project
|
tokei # Text file statistics in a project
|
||||||
@ -364,6 +365,7 @@ rec {
|
|||||||
nfs-utils
|
nfs-utils
|
||||||
|
|
||||||
appimage-run
|
appimage-run
|
||||||
|
decker
|
||||||
|
|
||||||
cool-retro-term
|
cool-retro-term
|
||||||
ventoy-full # Bootable USB for many ISOs
|
ventoy-full # Bootable USB for many ISOs
|
||||||
@ -391,6 +393,8 @@ rec {
|
|||||||
lm_sensors
|
lm_sensors
|
||||||
acpica-tools # Dump ACPI tables etc.
|
acpica-tools # Dump ACPI tables etc.
|
||||||
|
|
||||||
|
python311
|
||||||
|
|
||||||
# Web stuff
|
# Web stuff
|
||||||
signal-desktop
|
signal-desktop
|
||||||
# element-desktop # matrix client
|
# element-desktop # matrix client
|
||||||
@ -446,7 +450,7 @@ rec {
|
|||||||
# jetbrains.pycharm-professional
|
# jetbrains.pycharm-professional
|
||||||
# jetbrains.idea-ultimate
|
# jetbrains.idea-ultimate
|
||||||
jetbrains.clion # TODO: Use toolbox instead
|
jetbrains.clion # TODO: Use toolbox instead
|
||||||
jetbrains-toolbox
|
# jetbrains-toolbox
|
||||||
|
|
||||||
# Media
|
# Media
|
||||||
wacomtablet
|
wacomtablet
|
||||||
@ -628,7 +632,7 @@ rec {
|
|||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
exa.enable = true;
|
# exa.enable = true; # NOTE: Unmaintained
|
||||||
|
|
||||||
fzf = {
|
fzf = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
Reference in New Issue
Block a user