tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
lessc: update form 1.4.0. to 1.4.2 and adopt it
Pascal Wittmann
11 years ago
d8bc3363
319125be
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
lessc
default.nix
+6
-5
pkgs/development/compilers/lessc/default.nix
reviewed
···
2
2
3
3
stdenv.mkDerivation rec {
4
4
name = "lessc-${version}";
5
5
-
version = "1.4.0";
5
5
+
version = "1.4.2";
6
6
7
7
src = fetchgit {
8
8
url = https://github.com/less/less.js.git;
9
9
rev = "refs/tags/v${version}";
10
10
-
sha256 = "12nzaz7v1bnqzylh4zm1srrj7w7f45fqj4sihxyg0bknfvfwdc56";
10
10
+
sha256 = "1v3b4f1np3mxkj0irh1pk52r26nzpf4k2ax14cbn7mxx16mqjp50";
11
11
};
12
12
13
13
phases = [ "installPhase" ];
···
19
19
substituteInPlace $out/bin/lessc --replace "/usr/bin/env node" ${nodejs}/bin/node
20
20
'';
21
21
22
22
-
meta = {
22
22
+
meta = with stdenv.lib; {
23
23
description = "LESS to CSS compiler";
24
24
homepage = http://lesscss.org/;
25
25
-
license = stdenv.lib.licenses.asl20;
26
26
-
platforms = stdenv.lib.platforms.linux;
25
25
+
license = licenses.asl20;
26
26
+
platforms = platforms.linux;
27
27
+
maintainers = with maintainers; [ pSub ];
27
28
};
28
29
}