Merge pull request #60505 from manveru/update-compass
compass: use bundlerApp, cleanup
This commit is contained in:
commit
42475e52fd
@ -1,3 +1,3 @@
|
|||||||
source "https://rubygems.org"
|
source "https://rubygems.org" do
|
||||||
|
gem 'compass'
|
||||||
gem 'compass'
|
end
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
GEM
|
GEM
|
||||||
remote: https://rubygems.org/
|
remote: https://rubygems.org/
|
||||||
specs:
|
specs:
|
||||||
chunky_png (1.3.4)
|
chunky_png (1.3.11)
|
||||||
compass (1.0.3)
|
compass (1.0.3)
|
||||||
chunky_png (~> 1.2)
|
chunky_png (~> 1.2)
|
||||||
compass-core (~> 1.0.2)
|
compass-core (~> 1.0.2)
|
||||||
@ -14,15 +14,18 @@ GEM
|
|||||||
sass (>= 3.3.0, < 3.5)
|
sass (>= 3.3.0, < 3.5)
|
||||||
compass-import-once (1.0.5)
|
compass-import-once (1.0.5)
|
||||||
sass (>= 3.2, < 3.5)
|
sass (>= 3.2, < 3.5)
|
||||||
ffi (1.9.8)
|
ffi (1.10.0)
|
||||||
multi_json (1.11.0)
|
multi_json (1.13.1)
|
||||||
rb-fsevent (0.9.4)
|
rb-fsevent (0.10.3)
|
||||||
rb-inotify (0.9.5)
|
rb-inotify (0.10.0)
|
||||||
ffi (>= 0.5.0)
|
ffi (~> 1.0)
|
||||||
sass (3.4.13)
|
sass (3.4.25)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
ruby
|
ruby
|
||||||
|
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
compass
|
compass!
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.17.2
|
||||||
|
@ -1,16 +1,15 @@
|
|||||||
{ lib, bundlerEnv, ruby }:
|
{ lib, bundlerApp }:
|
||||||
|
|
||||||
bundlerEnv {
|
bundlerApp {
|
||||||
name = "compass-1.0.3";
|
pname = "compass";
|
||||||
|
|
||||||
inherit ruby;
|
|
||||||
gemdir = ./.;
|
gemdir = ./.;
|
||||||
|
exes = [ "compass" ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
|
description = "Stylesheet Authoring Environment that makes your website design simpler to implement and easier to maintain";
|
||||||
homepage = https://github.com/Compass/compass;
|
homepage = https://github.com/Compass/compass;
|
||||||
license = with licenses; mit;
|
license = with licenses; mit;
|
||||||
maintainers = with maintainers; [ offline ];
|
maintainers = with maintainers; [ offline manveru ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,83 +1,96 @@
|
|||||||
{
|
{
|
||||||
"chunky_png" = {
|
chunky_png = {
|
||||||
version = "1.3.4";
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "124najs9prqzrzk49h53kap992rmqxj0wni61z2hhsn7mwmgdp9d";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "0n5xhkj3vffihl3h9s8yjzazqaqcm4p1nyxa1w2dk3fkpzvb0wfw";
|
|
||||||
};
|
};
|
||||||
|
version = "1.3.11";
|
||||||
};
|
};
|
||||||
"compass" = {
|
compass = {
|
||||||
version = "1.0.3";
|
dependencies = ["chunky_png" "compass-core" "compass-import-once" "rb-fsevent" "rb-inotify" "sass"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
type = "gem";
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0lfi83w8z75czr0pf0rmj9hda22082h3cmvczl8r1ma9agf88y2c";
|
sha256 = "0lfi83w8z75czr0pf0rmj9hda22082h3cmvczl8r1ma9agf88y2c";
|
||||||
|
type = "gem";
|
||||||
};
|
};
|
||||||
dependencies = [
|
|
||||||
"chunky_png"
|
|
||||||
"compass-core"
|
|
||||||
"compass-import-once"
|
|
||||||
"rb-fsevent"
|
|
||||||
"rb-inotify"
|
|
||||||
"sass"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"compass-core" = {
|
|
||||||
version = "1.0.3";
|
version = "1.0.3";
|
||||||
|
};
|
||||||
|
compass-core = {
|
||||||
|
dependencies = ["multi_json" "sass"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
type = "gem";
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0yaspqwdmzwdcqviclbs3blq7an16pysrfzylz8q1gxmmd6bpj3a";
|
sha256 = "0yaspqwdmzwdcqviclbs3blq7an16pysrfzylz8q1gxmmd6bpj3a";
|
||||||
};
|
|
||||||
dependencies = [
|
|
||||||
"multi_json"
|
|
||||||
"sass"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"compass-import-once" = {
|
|
||||||
version = "1.0.5";
|
|
||||||
source = {
|
|
||||||
type = "gem";
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.0.3";
|
||||||
|
};
|
||||||
|
compass-import-once = {
|
||||||
|
dependencies = ["sass"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
sha256 = "0bn7gwbfz7jvvdd0qdfqlx67fcb83gyvxqc7dr9fhcnks3z8z5rq";
|
sha256 = "0bn7gwbfz7jvvdd0qdfqlx67fcb83gyvxqc7dr9fhcnks3z8z5rq";
|
||||||
};
|
|
||||||
dependencies = [
|
|
||||||
"sass"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
"ffi" = {
|
|
||||||
version = "1.9.8";
|
|
||||||
source = {
|
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "0ph098bv92rn5wl6rn2hwb4ng24v4187sz8pa0bpi9jfh50im879";
|
|
||||||
};
|
};
|
||||||
|
version = "1.0.5";
|
||||||
};
|
};
|
||||||
"multi_json" = {
|
ffi = {
|
||||||
version = "1.11.0";
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0j8pzj8raxbir5w5k6s7a042sb5k02pg0f8s4na1r5lan901j00p";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "1mg3hp17ch8bkf3ndj40s50yjs0vrqbfh3aq5r02jkpjkh23wgxl";
|
|
||||||
};
|
};
|
||||||
|
version = "1.10.0";
|
||||||
};
|
};
|
||||||
"rb-fsevent" = {
|
multi_json = {
|
||||||
version = "0.9.4";
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1rl0qy4inf1mp8mybfk56dfga0mvx97zwpmq5xmiwl5r770171nv";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "12if5xsik64kihxf5awsyavlp595y47g9qz77vfp2zvkxgglaka7";
|
|
||||||
};
|
};
|
||||||
|
version = "1.13.1";
|
||||||
};
|
};
|
||||||
"rb-inotify" = {
|
rb-fsevent = {
|
||||||
version = "0.9.5";
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1lm1k7wpz69jx7jrc92w3ggczkjyjbfziq5mg62vjnxmzs383xx8";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "0kddx2ia0qylw3r52nhg83irkaclvrncgy2m1ywpbhlhsz1rymb9";
|
|
||||||
};
|
};
|
||||||
dependencies = [
|
version = "0.10.3";
|
||||||
"ffi"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
"sass" = {
|
rb-inotify = {
|
||||||
version = "3.4.13";
|
dependencies = ["ffi"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
source = {
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1fs7hxm9g6ywv2yih83b879klhc4fs8i0p9166z795qmd77dk0a4";
|
||||||
type = "gem";
|
type = "gem";
|
||||||
sha256 = "0wxkjm41xr77pnfi06cbwv6vq0ypbni03jpbpskd7rj5b0zr27ig";
|
|
||||||
};
|
};
|
||||||
|
version = "0.10.0";
|
||||||
|
};
|
||||||
|
sass = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0kfpcwh8dgw4lc81qglkvjl73689jy3g7196zkxm4fpskg1p5lkw";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "3.4.25";
|
||||||
};
|
};
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user