mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 09:17:07 +03:00
Merge pull request #272045 from WolfangAukang/compass-fix
compass: use bundlerEnv
This commit is contained in:
commit
ea6c472d32
@ -1,3 +1,2 @@
|
||||
source "https://rubygems.org" do
|
||||
gem 'compass'
|
||||
end
|
||||
source 'https://rubygems.org'
|
||||
gem 'compass'
|
||||
|
@ -25,7 +25,7 @@ PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
compass!
|
||||
compass
|
||||
|
||||
BUNDLED WITH
|
||||
2.2.24
|
||||
2.4.22
|
||||
|
@ -1,9 +1,11 @@
|
||||
{ lib, bundlerApp, bundlerUpdateScript }:
|
||||
{ lib, bundlerEnv, bundlerUpdateScript, ruby }:
|
||||
|
||||
bundlerApp {
|
||||
bundlerEnv {
|
||||
pname = "compass";
|
||||
version = "1.0.3";
|
||||
|
||||
inherit ruby;
|
||||
gemdir = ./.;
|
||||
exes = [ "compass" ];
|
||||
|
||||
passthru.updateScript = bundlerUpdateScript "compass";
|
||||
|
||||
@ -12,6 +14,7 @@ bundlerApp {
|
||||
homepage = "https://github.com/Compass/compass";
|
||||
license = with licenses; mit;
|
||||
maintainers = with maintainers; [ offline manveru nicknovitski ];
|
||||
mainProgram = "compass";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user