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

29 lines
815 B
Nix
Raw Normal View History

2016-10-13 01:11:25 +00:00
{ stdenv, fetchFromGitHub, cmake, bison, flex }:
2017-01-24 21:46:17 +00:00
stdenv.mkDerivation rec {
2016-10-13 01:11:25 +00:00
name = "libcue-${version}";
version = "2.1.0";
src = fetchFromGitHub {
owner = "lipnitsk";
repo = "libcue";
rev = "v${version}";
sha256 = "14a84d6sq3yp8s8i05lxvifjpkgpjwfpchrqf3bbpbwa8gvrc0rj";
};
2016-10-13 01:11:25 +00:00
nativeBuildInputs = [ cmake bison flex ];
2017-01-24 21:46:17 +00:00
meta = with stdenv.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.
'';
homepage = https://sourceforge.net/projects/libcue/;
2017-01-24 21:46:17 +00:00
license = licenses.gpl2;
maintainers = with maintainers; [ astsmtl ];
platforms = platforms.linux ++ platforms.darwin;
};
}