lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 50 lines 820 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 meson, 6 ninja, 7 pkg-config, 8 vala, 9 gtk4, 10 libgee, 11}: 12 13stdenv.mkDerivation (finalAttrs: { 14 pname = "live-chart"; 15 version = "1.10.0"; 16 17 src = fetchFromGitHub { 18 owner = "lcallarec"; 19 repo = "live-chart"; 20 rev = finalAttrs.version; 21 hash = "sha256-SOZJ9sVrmsZybs5BVXWmqBJ/P7SZI/X8TGWHXGvXAU8="; 22 }; 23 24 outputs = [ 25 "out" 26 "dev" 27 ]; 28 29 nativeBuildInputs = [ 30 meson 31 ninja 32 pkg-config 33 vala 34 ]; 35 36 buildInputs = [ 37 gtk4 38 libgee 39 ]; 40 41 strictDeps = true; 42 43 meta = { 44 description = "Real-time charting library for Vala and GTK4 based on Cairo"; 45 homepage = "https://github.com/lcallarec/live-chart"; 46 license = lib.licenses.mit; 47 maintainers = with lib.maintainers; [ aleksana ]; 48 platforms = lib.platforms.unix; 49 }; 50})