summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/custom/qcma
diff options
context:
space:
mode:
authortv <tv@krebsco.de>2023-08-01 12:14:30 +0200
committertv <tv@krebsco.de>2023-08-01 12:14:30 +0200
commit7be9bfdc55d672de39dce98dae9c6d112404dfc6 (patch)
treee89a93ad96e6f35490ffbf6b6a337ca4dcc9a170 /makefu/5pkgs/custom/qcma
parent5d1b0675cf179f863a5b34b67661a953197b6057 (diff)
parent6e63efa3645353bc0549f5f152ef811fff5d644c (diff)
Merge remote-tracking branch 'orange/master'
Diffstat (limited to 'makefu/5pkgs/custom/qcma')
-rw-r--r--makefu/5pkgs/custom/qcma/default.nix57
1 files changed, 0 insertions, 57 deletions
diff --git a/makefu/5pkgs/custom/qcma/default.nix b/makefu/5pkgs/custom/qcma/default.nix
deleted file mode 100644
index 670822f33..000000000
--- a/makefu/5pkgs/custom/qcma/default.nix
+++ /dev/null
@@ -1,57 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, fetchgit, libusb, libtool, autoconf, pkgconfig, git,
-gettext, automake, libxml2
-, autoreconfHook
-, qmake4Hook
-, qmake
-, qtbase, qttools, qtmultimedia, libnotify, ffmpeg, gdk_pixbuf }:
-let
- libvitamtp = stdenv.mkDerivation rec {
- name = "libvitamtp-${version}";
- version = "2.5.9";
-
- src = fetchFromGitHub {
- owner = "codestation";
- repo = "vitamtp";
- rev = "v"+version;
- sha256 = "09c9f7gqpyicfpnhrfb4r67s2hci6hh31bzmqlpds4fywv5mzaf8";
- };
-
- buildInputs = [ libusb libxml2 libtool autoconf automake gettext pkgconfig
- autoreconfHook ];
-
- meta = {
- description = "Content Manager Assistant for the PS Vita";
- homepage = https://github.com/codestation/qcma;
- license = lib.licenses.gpl2;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ makefu ];
- };
- };
-in stdenv.mkDerivation rec {
- name = "qcma-${version}";
- version = "8e6cafedc0f47733f33323f829624e3fc847a176";
-
- src = fetchFromGitHub {
- owner = "codestation";
- repo = "qcma";
- rev = version;
- sha256 = "1l95kx3x4pf5iwmwigbch5c6n2h27lls5qiy4xh15v59p5442yw5";
- };
-
- preConfigure = ''
- lrelease common/resources/translations/*.ts
- '';
-
- enableParallelBuilding = true;
-
- buildInputs = [ gdk_pixbuf ffmpeg libnotify libvitamtp git qtmultimedia qtbase ];
- nativeBuildInputs = [ qttools pkgconfig qmake ];
-
- meta = {
- description = "Content Manager Assistant for the PS Vita";
- homepage = https://github.com/codestation/qcma;
- license = lib.licenses.gpl2;
- platforms = lib.platforms.linux;
- maintainers = with lib.maintainers; [ makefu ];
- };
-}