tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ashuffle: mpd_clientlib -> libmpdclient
AndersonTorres
5 years ago
ea01de98
12a2c647
+10
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
ashuffle
default.nix
+10
-2
pkgs/applications/audio/ashuffle/default.nix
···
1
-
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config, mpd_clientlib, meson, ninja }:
0
0
0
0
0
0
0
0
2
3
stdenv.mkDerivation rec {
4
pname = "ashuffle";
···
14
15
dontUseCmakeConfigure = true;
16
nativeBuildInputs = [ cmake pkg-config meson ninja ];
17
-
buildInputs = [ mpd_clientlib ];
18
19
meta = with lib; {
20
homepage = "https://github.com/joshkunz/ashuffle";
···
1
+
{ lib
2
+
, stdenv
3
+
, fetchFromGitHub
4
+
, cmake
5
+
, pkg-config
6
+
, meson
7
+
, ninja
8
+
, libmpdclient
9
+
}:
10
11
stdenv.mkDerivation rec {
12
pname = "ashuffle";
···
22
23
dontUseCmakeConfigure = true;
24
nativeBuildInputs = [ cmake pkg-config meson ninja ];
25
+
buildInputs = [ libmpdclient ];
26
27
meta = with lib; {
28
homepage = "https://github.com/joshkunz/ashuffle";