about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/xmake-core-sv/default.nix
blob: 83442a8d48a9104b5e5ced04ec3c57b45a2d3b2f (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
26
27
28
29
30
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
}:

stdenv.mkDerivation rec {
  pname = "xmake-core-sv";
  version = "1.1";

  src = fetchFromGitHub {
    owner = "xmake-io";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-icvGQi6FNSZXNGs2oLiUKu6rrVsWcXh1r91kycGjnwY=";
  };

  nativeBuildInputs = [
    autoreconfHook
  ];

  meta = with lib; {
    description = "Public domain cross-platform semantic versioning in c99";
    homepage = "https://github.com/xmake-io/xmake-core-sv";
    license = licenses.unlicense;
    platforms = platforms.linux;
    maintainers = with maintainers; [ rewine ];
  };
}