ashuffle: init at version 3.4.0

gstqt5
tcbravo 2020-05-29 22:41:27 +02:00
parent f1d60c64a5
commit 559a45c128
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub, cmake, pkg-config, mpd_clientlib, meson, ninja }:
stdenv.mkDerivation rec {
pname = "ashuffle";
version = "3.4.0";
src = fetchFromGitHub {
owner = "joshkunz";
repo = "ashuffle";
rev = "v${version}";
sha256 = "09q6lwgc1dc8bg1mb9js9qz3xcsxph3548nxzvyb4v8111gixrp7";
fetchSubmodules = true;
};
dontUseCmakeConfigure = true;
nativeBuildInputs = [ cmake pkg-config meson ninja ];
buildInputs = [ mpd_clientlib ];
meta = with stdenv.lib; {
homepage = "https://github.com/joshkunz/ashuffle";
description = "Automatic library-wide shuffle for mpd";
maintainers = [ maintainers.tcbravo ];
platforms = platforms.unix;
license = licenses.mit;
};
}

View File

@ -763,6 +763,8 @@ in
asciiquarium = callPackage ../applications/misc/asciiquarium {};
ashuffle = callPackage ../applications/audio/ashuffle {};
asls = callPackage ../development/tools/misc/asls { };
asymptote = callPackage ../tools/graphics/asymptote {