Merge pull request #272045 from WolfangAukang/compass-fix

compass: use bundlerEnv
This commit is contained in:
Peder Bergebakken Sundt 2023-12-07 10:07:34 +01:00 committed by GitHub
commit ea6c472d32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 8 deletions

View File

@ -1,3 +1,2 @@
source "https://rubygems.org" do
gem 'compass'
end
source 'https://rubygems.org'
gem 'compass'

View File

@ -25,7 +25,7 @@ PLATFORMS
ruby
DEPENDENCIES
compass!
compass
BUNDLED WITH
2.2.24
2.4.22

View File

@ -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;
};
}