Merge branch 'master.upstream' into staging.upstream
This commit is contained in:
3
pkgs/development/tools/compass/Gemfile
Normal file
3
pkgs/development/tools/compass/Gemfile
Normal file
@@ -0,0 +1,3 @@
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem 'compass'
|
||||
28
pkgs/development/tools/compass/Gemfile.lock
Normal file
28
pkgs/development/tools/compass/Gemfile.lock
Normal file
@@ -0,0 +1,28 @@
|
||||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
chunky_png (1.3.4)
|
||||
compass (1.0.3)
|
||||
chunky_png (~> 1.2)
|
||||
compass-core (~> 1.0.2)
|
||||
compass-import-once (~> 1.0.5)
|
||||
rb-fsevent (>= 0.9.3)
|
||||
rb-inotify (>= 0.9)
|
||||
sass (>= 3.3.13, < 3.5)
|
||||
compass-core (1.0.3)
|
||||
multi_json (~> 1.0)
|
||||
sass (>= 3.3.0, < 3.5)
|
||||
compass-import-once (1.0.5)
|
||||
sass (>= 3.2, < 3.5)
|
||||
ffi (1.9.8)
|
||||
multi_json (1.11.0)
|
||||
rb-fsevent (0.9.4)
|
||||
rb-inotify (0.9.5)
|
||||
ffi (>= 0.5.0)
|
||||
sass (3.4.13)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
compass
|
||||
18
pkgs/development/tools/compass/default.nix
Normal file
18
pkgs/development/tools/compass/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ stdenv, lib, bundlerEnv, ruby }:
|
||||
|
||||
bundlerEnv {
|
||||
name = "compass-1.0.3";
|
||||
|
||||
inherit ruby;
|
||||
gemfile = ./Gemfile;
|
||||
lockfile = ./Gemfile.lock;
|
||||
gemset = ./gemset.nix;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain.";
|
||||
homepage = https://github.com/Compass/compass;
|
||||
license = with licenses; mit;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
83
pkgs/development/tools/compass/gemset.nix
Normal file
83
pkgs/development/tools/compass/gemset.nix
Normal file
@@ -0,0 +1,83 @@
|
||||
{
|
||||
"chunky_png" = {
|
||||
version = "1.3.4";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0n5xhkj3vffihl3h9s8yjzazqaqcm4p1nyxa1w2dk3fkpzvb0wfw";
|
||||
};
|
||||
};
|
||||
"compass" = {
|
||||
version = "1.0.3";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0lfi83w8z75czr0pf0rmj9hda22082h3cmvczl8r1ma9agf88y2c";
|
||||
};
|
||||
dependencies = [
|
||||
"chunky_png"
|
||||
"compass-core"
|
||||
"compass-import-once"
|
||||
"rb-fsevent"
|
||||
"rb-inotify"
|
||||
"sass"
|
||||
];
|
||||
};
|
||||
"compass-core" = {
|
||||
version = "1.0.3";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0yaspqwdmzwdcqviclbs3blq7an16pysrfzylz8q1gxmmd6bpj3a";
|
||||
};
|
||||
dependencies = [
|
||||
"multi_json"
|
||||
"sass"
|
||||
];
|
||||
};
|
||||
"compass-import-once" = {
|
||||
version = "1.0.5";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0bn7gwbfz7jvvdd0qdfqlx67fcb83gyvxqc7dr9fhcnks3z8z5rq";
|
||||
};
|
||||
dependencies = [
|
||||
"sass"
|
||||
];
|
||||
};
|
||||
"ffi" = {
|
||||
version = "1.9.8";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0ph098bv92rn5wl6rn2hwb4ng24v4187sz8pa0bpi9jfh50im879";
|
||||
};
|
||||
};
|
||||
"multi_json" = {
|
||||
version = "1.11.0";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "1mg3hp17ch8bkf3ndj40s50yjs0vrqbfh3aq5r02jkpjkh23wgxl";
|
||||
};
|
||||
};
|
||||
"rb-fsevent" = {
|
||||
version = "0.9.4";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "12if5xsik64kihxf5awsyavlp595y47g9qz77vfp2zvkxgglaka7";
|
||||
};
|
||||
};
|
||||
"rb-inotify" = {
|
||||
version = "0.9.5";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9";
|
||||
};
|
||||
dependencies = [
|
||||
"ffi"
|
||||
];
|
||||
};
|
||||
"sass" = {
|
||||
version = "3.4.13";
|
||||
source = {
|
||||
type = "gem";
|
||||
sha256 = "0wxkjm41xr77pnfi06cbwv6vq0ypbni03jpbpskd7rj5b0zr27ig";
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -3,18 +3,18 @@
|
||||
let
|
||||
libphutil = fetchgit {
|
||||
url = "git://github.com/phacility/libphutil.git";
|
||||
rev = "672c0f7d5da9be6cda619428a9da3b91a670ea2f";
|
||||
sha256 = "830c7abce7244afa188255a6f288c345004cc4be1c8bbe93afa2aa2f1768f025";
|
||||
rev = "3753a09dfc7e7ee2626946735e420e5b50480f89";
|
||||
sha256 = "86c2613fed23edff58452ceb9fa98ceb559c7e41abdb6752f87ebcf0f50a1a66";
|
||||
};
|
||||
arcanist = fetchgit {
|
||||
url = "git://github.com/phacility/arcanist.git";
|
||||
rev = "64d03ff68bf2ff4ef99186472704df8aface9ef3";
|
||||
sha256 = "e9c5f9a9dcb1be0b7fd6f5fbda865e14277ddb0c1cedd256c459b3540ec6ded7";
|
||||
rev = "4d6d3feb7fc1fb63789554dddee8e489999c1201";
|
||||
sha256 = "e3a9314544c4430ac6e67ba2ae180a96b009b3ab848ba8712fc2b308cf880372";
|
||||
};
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "arcanist-${version}";
|
||||
version = "20150525";
|
||||
version = "20150707";
|
||||
|
||||
src = [ arcanist libphutil ];
|
||||
buildInputs = [ php makeWrapper flex ];
|
||||
|
||||
Reference in New Issue
Block a user