about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/redkite/default.nix
blob: eb3d7629a4ea6b56dae519aa0f22e6f3a5f2cff7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchFromGitHub, cmake, cairo }:

stdenv.mkDerivation rec {
  pname = "redkite";
  version = "1.3.1";

  src = fetchFromGitHub {
    owner = "iurie-sw";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-bf8kz9RyhDDuUHKiKvLiQLBIEXbIyoy3yuKfSpSYYv0=";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ cairo ];

  meta = with lib; {
    homepage = "https://gitlab.com/iurie-sw/redkite";
    description = "A small GUI toolkit";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.magnetophon ];
  };
}