nixpkgs/pkgs/by-name/li/libcue/package.nix

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

31 lines
798 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.3.0";
2016-10-13 02:11:25 +01:00
src = fetchFromGitHub {
owner = "lipnitsk";
repo = "libcue";
rev = "v${version}";
hash = "sha256-ZMUUa8CmpFNparPsM/P2yvRto9E85EdTxpID5sKQbNI=";
};
2016-10-13 02:11:25 +01:00
nativeBuildInputs = [ cmake bison flex ];
doCheck = true;
meta = with lib; {
2016-10-13 02:11:25 +01: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;
};
}