bundix: 2.5.1 -> 2.5.2
This commit is contained in:
parent
82eceabb0b
commit
20044799c0
1 changed files with 2 additions and 11 deletions
|
@ -1,6 +1,5 @@
|
||||||
{ buildRubyGem
|
{ buildRubyGem
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
|
||||||
, makeWrapper
|
, makeWrapper
|
||||||
, lib
|
, lib
|
||||||
, bundler
|
, bundler
|
||||||
|
@ -13,23 +12,15 @@ buildRubyGem rec {
|
||||||
|
|
||||||
name = "${gemName}-${version}";
|
name = "${gemName}-${version}";
|
||||||
gemName = "bundix";
|
gemName = "bundix";
|
||||||
version = "2.5.1";
|
version = "2.5.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nix-community";
|
owner = "nix-community";
|
||||||
repo = "bundix";
|
repo = "bundix";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-iMp6Yj7TSWDqge3Lw855/igOWdTIuFH1LGeIN/cpq7U=";
|
sha256 = "sha256-QnNdseCSwQYhO/ybzWsflMEk68TMgPU3HqXJ7av3SHE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# https://github.com/nix-community/bundix/pull/80
|
|
||||||
(fetchpatch {
|
|
||||||
url = "https://github.com/nix-community/bundix/commit/3d7820efdd77281234182a9b813c2895ef49ae1f.patch";
|
|
||||||
hash = "sha256-ShluCWfRQxR+vkXqa7Fh7+WHKf6vAsa9/DVeXjpAXLk=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [ ruby bundler ];
|
buildInputs = [ ruby bundler ];
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue