summaryrefslogtreecommitdiffstats
path: root/pkgs/by-name/ti/tinycmmc/package.nix
blob: ccc467c453388636223d5028e2e69b5d1f157d4c (plain)
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
26
27
28
{
  stdenv,
  lib,
  fetchFromGitHub,
  cmake,
}:

stdenv.mkDerivation {
  pname = "tinycmmc";
  version = "0.1.0-unstable-2025-07-21";

  src = fetchFromGitHub {
    owner = "Grumbel";
    repo = "tinycmmc";
    rev = "caf1af301e388e97dca31ee7fdc12f17cff34f82";
    sha256 = "sha256-62ykvAIfOCXH+3bF1IkR+WukeJBLcYC/4Mv3ptqAxEM=";
  };

  nativeBuildInputs = [ cmake ];

  meta = {
    description = "Tiny CMake Module Collections";
    homepage = "https://github.com/Grumbel/tinycmmc";
    maintainers = [ lib.maintainers.SchweGELBin ];
    platforms = lib.platforms.linux;
    license = lib.licenses.zlib;
  };
}