Skip to content

Commit

Permalink
libscfg: init at 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeladler committed Apr 30, 2024
1 parent 9726b21 commit 32bedc3
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/by-name/li/libscfg/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{ stdenv, lib, fetchFromSourcehut, meson, ninja, pkg-config, wayland }:

stdenv.mkDerivation rec {
pname = "libscfg";
version = "0.1.1";

src = fetchFromSourcehut {
owner = "~emersion";
repo = "libscfg";
rev = "v${version}";
sha256 = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
};

nativeBuildInputs = [ meson ninja pkg-config ];
buildInputs = [ wayland ];

meta = with lib; {
homepage = "https://sr.ht/~emersion/libscfg";
description = "A simple configuration file format";
license = licenses.mit;
maintainers = with maintainers; [ michaeladler ];
platforms = platforms.linux;
};
}

0 comments on commit 32bedc3

Please sign in to comment.