mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
ringing-lib: init at 0-unstable-2024-05-31 (#210560)
This commit is contained in:
parent
e16fee1857
commit
e589ce6148
45
pkgs/by-name/ri/ringing-lib/package.nix
Normal file
45
pkgs/by-name/ri/ringing-lib/package.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{
|
||||
stdenv,
|
||||
fetchFromGitHub,
|
||||
lib,
|
||||
autoreconfHook,
|
||||
pkg-config,
|
||||
readline,
|
||||
xercesc,
|
||||
unstableGitUpdater,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "ringing-lib";
|
||||
version = "0-unstable-2024-05-31";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ringing-lib";
|
||||
repo = "ringing-lib";
|
||||
rev = "4f791c559743499589d66dc44266cd681f6901de";
|
||||
hash = "sha256-+P2x2ywk7Ev7GacfUONusVHjlE6bIVBeJasjlcw5kTU=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
readline
|
||||
xercesc
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { hardcodeZeroVersion = true; };
|
||||
meta = {
|
||||
description = "Library of C++ classes and utilities for change ringing";
|
||||
homepage = "https://ringing-lib.github.io/";
|
||||
license = with lib.licenses; [
|
||||
gpl2Plus
|
||||
lgpl2Plus
|
||||
];
|
||||
maintainers = with lib.maintainers; [ jshholland ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
})
|
Loading…
Reference in New Issue
Block a user