summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2021-10-01 18:53:52 +0200
committermakefu <github@syntax-fehler.de>2021-10-01 18:53:52 +0200
commit9e27690932169e895a00355398dd36f4241df37a (patch)
treed1fad7a8897f3840dbf0c3e8b588fe34f548b663 /makefu/5pkgs
parent51eaeac0bc3ec8543dbb24fb3398a906fa8b22b3 (diff)
ma tools/consoles: add opl-pc-tools
Diffstat (limited to 'makefu/5pkgs')
-rw-r--r--makefu/5pkgs/opl-pc-tools/default.nix44
1 files changed, 44 insertions, 0 deletions
diff --git a/makefu/5pkgs/opl-pc-tools/default.nix b/makefu/5pkgs/opl-pc-tools/default.nix
new file mode 100644
index 00000000..a670b939
--- /dev/null
+++ b/makefu/5pkgs/opl-pc-tools/default.nix
@@ -0,0 +1,44 @@
+{ 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;
+ };
+}