rcm: 1.1.3 -> 1.3.4
This commit is contained in:
parent
be3f605eee
commit
3e61deb190
|
@ -1,12 +1,15 @@
|
||||||
{ lib, stdenv, fetchurl }:
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "rcm";
|
pname = "rcm";
|
||||||
version = "1.3.3";
|
version = "1.3.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
|
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
|
||||||
sha256 = "1bqk7rrp1ckzvsvl9wghsr77m8xl3a7yc5gqdsisz492dx2j8mck";
|
sha256 = "sha256-mxGuN0Sc9NI07G0TSEeb/tMlPauhH36ed0BZhltmwko=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [ ./fix-rcmlib-path.patch ];
|
patches = [ ./fix-rcmlib-path.patch ];
|
||||||
|
@ -18,10 +21,10 @@ stdenv.mkDerivation rec {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Management Suite for Dotfiles";
|
|
||||||
homepage = "https://github.com/thoughtbot/rcm";
|
homepage = "https://github.com/thoughtbot/rcm";
|
||||||
|
description = "Management Suite for Dotfiles";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ malyn ];
|
maintainers = with maintainers; [ malyn AndersonTorres ];
|
||||||
platforms = with platforms; unix;
|
platforms = with platforms; unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue