mirror of
https://codeberg.org/jopejoe1/nix-conf.git
synced 2025-06-03 11:59:23 +02:00
delet unused packages
This commit is contained in:
parent
816de6bcf1
commit
5eb6990424
5 changed files with 0 additions and 194 deletions
|
@ -11,12 +11,4 @@ rec {
|
|||
});
|
||||
|
||||
nixos-anywhere = inputs.nixos-anywhere.packages.${system}.nixos-anywhere;
|
||||
|
||||
esp8266 = pkgs.callPackage ./esp8266.nix { };
|
||||
esp8266-sdk = pkgs.callPackage ./esp8266-sdk.nix {
|
||||
inherit esp8266;
|
||||
};
|
||||
|
||||
kde-hdr-fix = pkgs.callPackage ./kde-hdr.nix { };
|
||||
kde-wallpaper = pkgs.callPackage ./kde-wallpaper.nix { };
|
||||
}
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
fetchpatch,
|
||||
esp8266,
|
||||
ncurses,
|
||||
flex,
|
||||
bison,
|
||||
gperf,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "esp8266-sdk";
|
||||
version = "3.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "espressif";
|
||||
repo = "ESP8266_RTOS_SDK";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-3+eIiW79dlHFjkLGXq4IV5EC78I7JDtASLkDyCyyh6g=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace ./lxdialog/check-lxdialog.sh --replace-fail "main() {}" "int main() { return 0; }"
|
||||
#substituteInPlace Makefile --replace "-lncurses" "${ncurses}/lib/libncurses.so"
|
||||
'';
|
||||
|
||||
env = {
|
||||
LDFLAGS = "-L${ncurses}/lib";
|
||||
CPPFLAGS = "-I${ncurses.dev}/include";
|
||||
NIX_CFLAGS_COMPILE = "-I${ncurses.dev}/include";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/tools/kconfig";
|
||||
|
||||
nativeBuildInputs = [
|
||||
flex
|
||||
bison
|
||||
gperf
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
esp8266
|
||||
ncurses
|
||||
stdenv.cc.cc.lib
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "ESP8266 RTOS SDK, an SDK for developing applications for the ESP8266 WiFi SoC";
|
||||
homepage = "https://github.com/espressif/ESP8266_RTOS_SDK";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchzip,
|
||||
autoPatchelfHook,
|
||||
gcc,
|
||||
git,
|
||||
ncurses,
|
||||
flex,
|
||||
bison,
|
||||
gperf,
|
||||
python3,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "esp8266";
|
||||
version = "2020r3";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://dl.espressif.com/dl/xtensa-lx106-elf-gcc8_4_0-esp-${version}-linux-amd64.tar.gz";
|
||||
hash = "sha256-6to5phSx3E2D/qIbN+Nci9qkCTsGT18veFpcKAC1IfA=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/
|
||||
mv ./* $out/
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoPatchelfHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
stdenv.cc.cc.lib
|
||||
];
|
||||
|
||||
autoPatchelfIgnoreMissingDeps = [ "libpython2.7.so.1.0" ];
|
||||
|
||||
meta = {
|
||||
description = "Hacks to make HDR work in games on KDE";
|
||||
homepage = "https://github.com/Zamundaaa/VK_hdr_layer";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
meson,
|
||||
# ninja,
|
||||
fetchFromGitHub,
|
||||
vulkan-headers,
|
||||
libX11,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "VK_hdr_layer";
|
||||
version = "0-unstable-";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Zamundaaa";
|
||||
repo = "VK_hdr_layer";
|
||||
rev = "e47dc6da924cd361b0082f5c27fe5e923377bb54";
|
||||
fetchSubmodules = true;
|
||||
hash = "sha256-wuZdUWMKEM/UCeuZSiNyup2vzo6+KIH9Rpaoc4FARJE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
# ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
vulkan-headers
|
||||
libX11
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
description = "Hacks to make HDR work in games on KDE";
|
||||
homepage = "https://github.com/Zamundaaa/VK_hdr_layer";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
cmake,
|
||||
kdePackages,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "wallpaper-engine-kde-plugin";
|
||||
version = "0-unstable-";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "catsout";
|
||||
repo = "wallpaper-engine-kde-plugin";
|
||||
rev = "34f7f01acba3bc8f94d478032cf86aef06b02d26";
|
||||
hash = "sha256-kuXDLlE//HuM8fJOGjZtsIBDIudR19mhwrBtwhDhN+k=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
kdePackages.extra-cmake-modules
|
||||
kdePackages.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [ kdePackages.qtbase ];
|
||||
|
||||
cmakeFlags = [
|
||||
"-DECM_DIR=${kdePackages.extra-cmake-modules}/share/ECM/cmake"
|
||||
"-DQT_MAJOR_VERSION=6"
|
||||
];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
meta = {
|
||||
description = "Kde wallpaper plugin integrating wallpaper engine";
|
||||
homepage = "https://github.com/catsout/wallpaper-engine-kde-plugin";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = with lib.maintainers; [ jopejoe1 ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue