mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
makeself: 2.2.0 -> 2.3.1
This commit is contained in:
parent
63f7456f6a
commit
25ea55046d
1 changed files with 8 additions and 6 deletions
|
@ -1,12 +1,14 @@
|
|||
{ stdenv, fetchgit }:
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "makeself-2.2.0";
|
||||
version = "2.3.1";
|
||||
name = "makeself-${version}";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://github.com/megastep/makeself.git";
|
||||
rev = "b836b9281ae99abe1865608b065551da56c80719";
|
||||
sha256 = "f7c97f0f8ad8128f2f1b54383319f2cc44cbb05b60ced222784debdf326f23ad";
|
||||
src = fetchFromGitHub {
|
||||
owner = "megastep";
|
||||
repo = "makeself";
|
||||
rev = "release-${version}";
|
||||
sha256 = "01r7vb9vyb99s3g5cw0c04s1ahcingynk3ki17wknlk2asjrbc4p";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
|
|
Loading…
Reference in a new issue