nixpkgs/pkgs/development/libraries/libcue/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
832 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, bison, flex }:
2017-01-24 21:46:17 +00:00
stdenv.mkDerivation rec {
pname = "libcue";
version = "2.2.1";
2016-10-13 01:11:25 +00:00
src = fetchFromGitHub {
owner = "lipnitsk";
repo = "libcue";
rev = "v${version}";
sha256 = "1iqw4n01rv2jyk9lksagyxj8ml0kcfwk67n79zy1r6zv1xfp5ywm";
};
2016-10-13 01:11:25 +00:00
nativeBuildInputs = [ cmake bison flex ];
doCheck = false; # fails all the tests (ctest)
meta = with lib; {
2016-10-13 01:11:25 +00:00
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.
'';
2023-01-17 18:06:25 +00:00
homepage = "https://github.com/lipnitsk/libcue";
2023-01-17 18:06:45 +00:00
license = licenses.gpl2Only;
2017-01-24 21:46:17 +00:00
maintainers = with maintainers; [ astsmtl ];
platforms = platforms.unix;
};
}