summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/opl-pc-tools
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
committermakefu <github@syntax-fehler.de>2023-07-28 22:24:15 +0200
commit060a8f28fa1fc648bdf66afb31a5d1efac868837 (patch)
tree2b354eacc7897365ee45244fe7a51720e0d0333f /makefu/5pkgs/opl-pc-tools
parentcbfcc890e3b76d942b927809bf981a5fa7289e6a (diff)
makefu: move out to own repo, add vacation-note
Diffstat (limited to 'makefu/5pkgs/opl-pc-tools')
-rw-r--r--makefu/5pkgs/opl-pc-tools/default.nix44
1 files changed, 0 insertions, 44 deletions
diff --git a/makefu/5pkgs/opl-pc-tools/default.nix b/makefu/5pkgs/opl-pc-tools/default.nix
deleted file mode 100644
index a670b939..00000000
--- a/makefu/5pkgs/opl-pc-tools/default.nix
+++ /dev/null
@@ -1,44 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, cmake
-, pkg-config
-, meson
-, ninja
-, qt5
-, wrapQtAppsHook
-}:
-
-stdenv.mkDerivation rec {
- pname = "OPL-PC-Tools";
- version = "3.0";
-
- src = fetchFromGitHub {
- owner = "brainstream";
- repo = "OPL-PC-Tools";
- rev = version;
- sha256 = "1772j99r7ssf45512z5256142gj2ds9mgqv5m8k6hszd5jbnc9qc";
- };
-
- #dontUseCmakeConfigure = true;
- nativeBuildInputs = [ cmake pkg-config meson ninja
- wrapQtAppsHook
-];
-buildInputs = with qt5;[ qtbase
-qttools
-];
-
-installPhase = ''
-ls -lahtr .
- mkdir -p $out/bin
- cp oplpctools $out/bin/
- '';
-
- meta = with lib; {
- homepage = "https://github.com/joshkunz/ashuffle";
- description = "Automatic library-wide shuffle for mpd";
- maintainers = [ maintainers.tcbravo ];
- platforms = platforms.unix;
- license = licenses.mit;
- };
-}