lol
0
fork

Configure Feed

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

caroline: init at 0.3.1 (#178459)

* caroline: init at 0.3.1

* Update pkgs/development/libraries/caroline/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

grindhold
Sandro
and committed by
GitHub
a90bd928 7531e7a3

+36
+34
pkgs/development/libraries/caroline/default.nix
··· 1 + { stdenv, lib, fetchFromGitHub, vala, meson, ninja, pkg-config, glib, libgee, gtk3 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "caroline"; 5 + version = "0.3.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "dcharles525"; 9 + repo = pname; 10 + rev = version; 11 + hash = "sha256-v423h9EC/h6B9VABhkvmYcyYXKPpvqhI8O7ZjbO637k"; 12 + }; 13 + 14 + nativeBuildInputs = [ 15 + vala 16 + meson 17 + ninja 18 + pkg-config 19 + ]; 20 + 21 + buildInputs = [ 22 + glib 23 + libgee 24 + gtk3 25 + ]; 26 + 27 + meta = with lib; { 28 + description = " A simple Cairo Chart Library for GTK and Vala"; 29 + homepage = "https://github.com/dcharles525/Caroline"; 30 + maintainers = with maintainers; [ grindhold ]; 31 + license = licenses.mit; 32 + platforms = platforms.unix; 33 + }; 34 + }
+2
pkgs/top-level/all-packages.nix
··· 327 327 328 328 buildMaven = callPackage ../build-support/build-maven.nix {}; 329 329 330 + caroline = callPackage ../development/libraries/caroline { }; 331 + 330 332 castget = callPackage ../applications/networking/feedreaders/castget { }; 331 333 332 334 castxml = callPackage ../development/tools/castxml {