mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
ashuffle: init at version 3.4.0
This commit is contained in:
parent
f1d60c64a5
commit
559a45c128
2 changed files with 28 additions and 0 deletions
26
pkgs/applications/audio/ashuffle/default.nix
Normal file
26
pkgs/applications/audio/ashuffle/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue