compass: use bundlerEnv

This commit is contained in:
P. 2023-12-04 08:12:05 -06:00
parent 8dd75c8fb8
commit c98f07b422
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
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;
};
}