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
25
pkgs/development/libraries/librdf/raptor.nix
Normal file
25
pkgs/development/libraries/librdf/raptor.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchurl, libxml2, curl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "raptor";
|
||||
version = "1.4.21";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.librdf.org/source/raptor-${version}.tar.gz";
|
||||
sha256 = "db3172d6f3c432623ed87d7d609161973d2f7098e3d2233d0702fbcc22cfd8ca";
|
||||
};
|
||||
|
||||
buildInputs = [ libxml2 curl ];
|
||||
|
||||
preBuild = ''
|
||||
sed -e '/curl\/types/d' -i src/*.c src/*.h
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "The RDF Parser Toolkit";
|
||||
homepage = "https://librdf.org/raptor";
|
||||
license = with lib.licenses; [ lgpl21 asl20 ];
|
||||
maintainers = [ lib.maintainers.marcweber ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue