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 stdenv,
3 lib,
4 fetchFromSourcehut,
5 meson,
6 ninja,
7 pkg-config,
8 wayland,
9 nix-update-script,
10}:
11
12stdenv.mkDerivation (finalAttrs: {
13 pname = "libscfg";
14 version = "0.1.1";
15
16 src = fetchFromSourcehut {
17 owner = "~emersion";
18 repo = "libscfg";
19 rev = "v${finalAttrs.version}";
20 hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
21 };
22
23 nativeBuildInputs = [
24 meson
25 ninja
26 pkg-config
27 ];
28 buildInputs = [ wayland ];
29
30 passthru.updateScript = nix-update-script { };
31
32 meta = {
33 homepage = "https://sr.ht/~emersion/libscfg";
34 description = "Simple configuration file format";
35 license = lib.licenses.mit;
36 maintainers = with lib.maintainers; [ michaeladler ];
37 platforms = lib.platforms.linux;
38 };
39})