f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
45 lines
1.3 KiB
Nix
45 lines
1.3 KiB
Nix
{ buildRubyGem, fetchFromGitHub, makeWrapper, lib, bundler, nix,
|
|
nix-prefetch-git }:
|
|
|
|
buildRubyGem rec {
|
|
inherit (bundler) ruby;
|
|
|
|
name = "${gemName}-${version}";
|
|
gemName = "bundix";
|
|
version = "2.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "manveru";
|
|
repo = "bundix";
|
|
rev = version;
|
|
sha256 = "0ap23abv6chiv7v97ic6b1qf5by6b26as5yrpxg5q7p2giyiv33v";
|
|
};
|
|
|
|
buildInputs = [ ruby bundler ];
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
preFixup = ''
|
|
wrapProgram $out/bin/bundix \
|
|
--prefix PATH : "${nix.out}/bin" \
|
|
--prefix PATH : "${nix-prefetch-git.out}/bin" \
|
|
--prefix PATH : "${bundler.out}/bin" \
|
|
--set GEM_HOME "${bundler}/${bundler.ruby.gemPath}" \
|
|
--set GEM_PATH "${bundler}/${bundler.ruby.gemPath}"
|
|
'';
|
|
|
|
meta = {
|
|
inherit version;
|
|
description = "Creates Nix packages from Gemfiles";
|
|
longDescription = ''
|
|
This is a tool that converts Gemfile.lock files to nix expressions.
|
|
|
|
The output is then usable by the bundlerEnv derivation to list all the
|
|
dependencies of a ruby package.
|
|
'';
|
|
homepage = https://github.com/manveru/bundix;
|
|
license = "MIT";
|
|
maintainers = with lib.maintainers; [ manveru zimbatm ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|