libscfg: init at 0.1.1
This commit is contained in:
parent
9726b21488
commit
32bedc35b3
24
pkgs/by-name/li/libscfg/package.nix
Normal file
24
pkgs/by-name/li/libscfg/package.nix
Normal file
@ -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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user