uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
30
pkgs/development/libraries/libcue/default.nix
Normal file
30
pkgs/development/libraries/libcue/default.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake, bison, flex }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libcue";
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lipnitsk";
|
||||
repo = "libcue";
|
||||
rev = "v${version}";
|
||||
sha256 = "1iqw4n01rv2jyk9lksagyxj8ml0kcfwk67n79zy1r6zv1xfp5ywm";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake bison flex ];
|
||||
|
||||
doCheck = false; # fails all the tests (ctest)
|
||||
|
||||
meta = with 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue