storj-uplink: 1.119.15 -> 1.120.4 (#375732)
[NixPkgs.git] / pkgs / by-name / li / libscfg / package.nix
blobadf08d291a73ec8b5f63c7e4e675301f7b851df2
2   stdenv,
3   lib,
4   fetchFromSourcehut,
5   meson,
6   ninja,
7   pkg-config,
8   wayland,
9   nix-update-script,
12 stdenv.mkDerivation rec {
13   pname = "libscfg";
14   version = "0.1.1";
16   src = fetchFromSourcehut {
17     owner = "~emersion";
18     repo = "libscfg";
19     rev = "v${version}";
20     hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
21   };
23   nativeBuildInputs = [
24     meson
25     ninja
26     pkg-config
27   ];
28   buildInputs = [ wayland ];
30   passthru.updateScript = nix-update-script { };
32   meta = with lib; {
33     homepage = "https://sr.ht/~emersion/libscfg";
34     description = "Simple configuration file format";
35     license = licenses.mit;
36     maintainers = with maintainers; [ michaeladler ];
37     platforms = platforms.linux;
38   };