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
31
pkgs/development/idris-modules/html.nix
Normal file
31
pkgs/development/idris-modules/html.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ build-idris-package
|
||||
, fetchFromGitHub
|
||||
, idrisscript
|
||||
, hrtime
|
||||
, webgl
|
||||
, lib
|
||||
}:
|
||||
build-idris-package {
|
||||
pname = "html";
|
||||
version = "2017-04-23";
|
||||
|
||||
idrisDeps = [ idrisscript hrtime webgl ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "pierrebeaucamp";
|
||||
repo = "idris-html";
|
||||
rev = "f59ecc560d7008ba26dda83f11319bb24ed6c508";
|
||||
sha256 = "0r2clvkyld3y3r6smkfb7s47qnndikwds3bx9hphidbn41wjnh0i";
|
||||
};
|
||||
|
||||
postUnpack = ''
|
||||
sed -i "s/hrTime/hrtime/g" source/html.ipkg
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Idris library to interact with HTML";
|
||||
homepage = "https://github.com/pierrebeaucamp/idris-html";
|
||||
license = lib.licenses.asl20;
|
||||
maintainers = [ lib.maintainers.brainrape ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue