summary refs log tree commit diff
path: root/pkgs/development/compilers/lessc/default.nix
blob: 82052b3d3ca92da9799b29ff57e16c5ca76b9a63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchgit, nodejs }:

stdenv.mkDerivation rec {
  name = "lessc-${version}";
  version = "1.7.5"; # Upgrade to > 2.x breaks twitter-bootstrap

  src = fetchgit {
    url = https://github.com/less/less.js.git;
    rev = "refs/tags/v${version}";
    sha256 = "0r8bcad247v5fyh543a7dppmfbf49ai4my3vcizk42fsbnjs8q2x";
  };

  phases = [ "installPhase" ];

  installPhase = ''
    mkdir -p $out/bin $out/lib
    cp -r $src/bin/* $out/bin/
    cp -r $src/lib/* $out/lib/
    substituteInPlace $out/bin/lessc --replace "/usr/bin/env node" ${nodejs}/bin/node
  '';

  meta = with stdenv.lib; {
    description = "LESS to CSS compiler";
    homepage = http://lesscss.org/;
    license = licenses.asl20;
    platforms = platforms.linux;
    maintainers = with maintainers; [ pSub ];
  };
}