mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 18:33:00 +00:00
2641d97cbf
Reproduction script: # Bulk rewrite ./maintainers/scripts/sha-to-sri.py pkgs/by-name # Revert some packages which will need manual intervention for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do git checkout -- "pkgs/by-name/${n:0:2}/${n}" done
25 lines
642 B
Nix
25 lines
642 B
Nix
{ 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}";
|
|
hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config ];
|
|
buildInputs = [ wayland ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://sr.ht/~emersion/libscfg";
|
|
description = "Simple configuration file format";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ michaeladler ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|