f08e06ba2f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libcue/versions. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 2.2.1 with grep in /nix/store/lqppvr2arq1jmmdil3519c2y7hhm0vq3-libcue-2.2.1 - directory tree listing: https://gist.github.com/49da59ef9dfe640d50f9bc6ee72a7457
28 lines
815 B
Nix
28 lines
815 B
Nix
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libcue-${version}";
|
|
version = "2.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lipnitsk";
|
|
repo = "libcue";
|
|
rev = "v${version}";
|
|
sha256 = "1iqw4n01rv2jyk9lksagyxj8ml0kcfwk67n79zy1r6zv1xfp5ywm";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake bison flex ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "CUE Sheet Parser Library";
|
|
longDescription = ''
|
|
libcue is intended to parse a so called cue sheet from a char string or
|
|
a file pointer. For handling of the parsed data a convenient API is
|
|
available.
|
|
'';
|
|
homepage = https://sourceforge.net/projects/libcue/;
|
|
license = licenses.gpl2;
|
|
maintainers = with maintainers; [ astsmtl ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|