mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
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>
This commit is contained in:
parent
7531e7a3f9
commit
a90bd9287f
34
pkgs/development/libraries/caroline/default.nix
Normal file
34
pkgs/development/libraries/caroline/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, lib, fetchFromGitHub, vala, meson, ninja, pkg-config, glib, libgee, gtk3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "caroline";
|
||||
version = "0.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dcharles525";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-v423h9EC/h6B9VABhkvmYcyYXKPpvqhI8O7ZjbO637k";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
vala
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
libgee
|
||||
gtk3
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = " A simple Cairo Chart Library for GTK and Vala";
|
||||
homepage = "https://github.com/dcharles525/Caroline";
|
||||
maintainers = with maintainers; [ grindhold ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
|
@ -327,6 +327,8 @@ with pkgs;
|
|||
|
||||
buildMaven = callPackage ../build-support/build-maven.nix {};
|
||||
|
||||
caroline = callPackage ../development/libraries/caroline { };
|
||||
|
||||
castget = callPackage ../applications/networking/feedreaders/castget { };
|
||||
|
||||
castxml = callPackage ../development/tools/castxml {
|
||||
|
|
Loading…
Reference in a new issue