Merge pull request #110480 from AndersonTorres/new-rcm

rcm: 1.1.3 -> 1.3.4
This commit is contained in:
Sandro 2021-01-22 16:44:35 +01:00 committed by GitHub
commit 070c76d434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,15 @@
{ lib, stdenv, fetchurl }:
{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "rcm";
version = "1.3.3";
version = "1.3.4";
src = fetchurl {
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
sha256 = "1bqk7rrp1ckzvsvl9wghsr77m8xl3a7yc5gqdsisz492dx2j8mck";
sha256 = "sha256-mxGuN0Sc9NI07G0TSEeb/tMlPauhH36ed0BZhltmwko=";
};
patches = [ ./fix-rcmlib-path.patch ];
@ -18,10 +21,10 @@ stdenv.mkDerivation rec {
'';
meta = with lib; {
description = "Management Suite for Dotfiles";
homepage = "https://github.com/thoughtbot/rcm";
description = "Management Suite for Dotfiles";
license = licenses.bsd3;
maintainers = with maintainers; [ malyn ];
maintainers = with maintainers; [ malyn AndersonTorres ];
platforms = with platforms; unix;
};
}