mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
40 lines
742 B
Nix
40 lines
742 B
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchFromSourcehut,
|
|
meson,
|
|
ninja,
|
|
pkg-config,
|
|
wayland,
|
|
nix-update-script,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libscfg";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~emersion";
|
|
repo = "libscfg";
|
|
rev = "v${version}";
|
|
hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
|
|
};
|
|
|
|
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";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ michaeladler ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|