rcm: 1.1.3 -> 1.3.4

This commit is contained in:
AndersonTorres 2021-01-22 10:27:48 -03:00
parent be3f605eee
commit 3e61deb190

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;
};
}