mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
libscfg: format, add updateScript (#345668)
This commit is contained in:
commit
4b1f5e9b73
@ -1,4 +1,13 @@
|
||||
{ stdenv, lib, fetchFromSourcehut, meson, ninja, pkg-config, wayland }:
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
fetchFromSourcehut,
|
||||
meson,
|
||||
ninja,
|
||||
pkg-config,
|
||||
wayland,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libscfg";
|
||||
@ -11,9 +20,15 @@ stdenv.mkDerivation rec {
|
||||
hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ meson ninja pkg-config ];
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [ wayland ];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://sr.ht/~emersion/libscfg";
|
||||
description = "Simple configuration file format";
|
||||
|
Loading…
Reference in New Issue
Block a user