fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{
2 lib,
3 stdenv,
4 fetchFromGitHub,
5 cmake,
6}:
7
8stdenv.mkDerivation (finalAttrs: {
9 pname = "libsv";
10 version = "1.2";
11
12 src = fetchFromGitHub {
13 owner = "uael";
14 repo = "sv";
15 tag = "v${finalAttrs.version}";
16 hash = "sha256-sc7WTRY8XTm5+J+zlS7tGa2f+2d7apj+XHyBafZXXeE=";
17 };
18
19 nativeBuildInputs = [ cmake ];
20
21 meta = {
22 description = "Public domain cross-platform semantic versioning in C99";
23 homepage = "https://github.com/uael/sv";
24 license = lib.licenses.unlicense;
25 maintainers = [ lib.maintainers.sigmanificient ];
26 platforms = lib.platforms.unix;
27 };
28})