2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
71 lines
1.6 KiB
Nix
71 lines
1.6 KiB
Nix
{ stdenv, lib, fetchgit, fetchurl, nodejs, phantomjs2, pkgs }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
# highlight.js is a git submodule of remark
|
|
highlightjs = fetchgit {
|
|
url = https://github.com/isagalaev/highlight.js;
|
|
rev = "10b9500b67983f0a9c42d8ce8bf8e8c469f7078c";
|
|
sha256 = "1yy8by15kfklw8lwh17z1swpj067q0skjjih12yawbryraig41m0";
|
|
};
|
|
|
|
nodePackages = import ./nodepkgs.nix {
|
|
inherit pkgs;
|
|
inherit (stdenv.hostPlatform) system;
|
|
};
|
|
|
|
in stdenv.mkDerivation rec {
|
|
pname = "remarkjs";
|
|
|
|
version = "0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/gnab/remark/archive/v${version}.tar.gz";
|
|
sha256 = "1a2il6aa0g9cnig56ykmq8lr626pbxlsllk6js41h6gcn214rw60";
|
|
};
|
|
|
|
buildInputs = [ nodejs phantomjs2 ] ++ (with nodePackages; [
|
|
marked
|
|
browserify
|
|
uglify-js
|
|
less
|
|
mocha
|
|
#mocha-phantomjs
|
|
should
|
|
sinon
|
|
jshint
|
|
shelljs
|
|
]);
|
|
|
|
configurePhase = ''
|
|
mkdir -p node_modules/.bin
|
|
${concatStrings (map (dep: ''
|
|
test -d ${dep}/bin && (for b in $(ls ${dep}/bin); do
|
|
ln -sv -t node_modules/.bin ${dep}/bin/$b
|
|
done)
|
|
'') buildInputs)}
|
|
'';
|
|
|
|
buildPhase = ''
|
|
substituteInPlace make.js --replace "target.test();" ""
|
|
substituteInPlace make.js --replace vendor/highlight.js ${highlightjs}
|
|
node make all
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib
|
|
cp -v out/* $out/lib/
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://remarkjs.com;
|
|
description = "A simple, in-browser, markdown-driven slideshow tool";
|
|
maintainers = [];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
license = stdenv.lib.licenses.mit;
|
|
broken = true;
|
|
};
|
|
}
|