nixpkgs/pkgs/applications/audio/ashuffle/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
729 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
, pkg-config
, meson
, ninja
, libmpdclient
}:
2020-05-29 21:41:27 +01:00
stdenv.mkDerivation rec {
pname = "ashuffle";
2021-12-06 01:45:34 +00:00
version = "3.12.5";
2020-05-29 21:41:27 +01:00
src = fetchFromGitHub {
owner = "joshkunz";
repo = "ashuffle";
rev = "v${version}";
2021-12-06 01:45:34 +00:00
sha256 = "sha256-dPgv6EzRxRdHkGvys601Bkg9Srd8oEjoE9jbAin74Vk=";
2020-05-29 21:41:27 +01:00
fetchSubmodules = true;
};
dontUseCmakeConfigure = true;
nativeBuildInputs = [ cmake pkg-config meson ninja ];
buildInputs = [ libmpdclient ];
2020-05-29 21:41:27 +01:00
meta = with lib; {
2020-05-29 21:41:27 +01:00
homepage = "https://github.com/joshkunz/ashuffle";
description = "Automatic library-wide shuffle for mpd";
maintainers = [ maintainers.tcbravo ];
platforms = platforms.unix;
license = licenses.mit;
};
}