2021-01-22 13:27:48 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, fetchurl
|
|
|
|
}:
|
2014-10-25 23:17:26 +01:00
|
|
|
|
2017-01-26 04:42:30 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "rcm";
|
2021-01-22 13:27:48 +00:00
|
|
|
version = "1.3.4";
|
2014-10-25 23:17:26 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-01-26 04:42:30 +00:00
|
|
|
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
|
2021-01-22 13:27:48 +00:00
|
|
|
sha256 = "sha256-mxGuN0Sc9NI07G0TSEeb/tMlPauhH36ed0BZhltmwko=";
|
2014-10-25 23:17:26 +01:00
|
|
|
};
|
2017-01-26 04:42:30 +00:00
|
|
|
|
2015-01-25 17:52:46 +00:00
|
|
|
patches = [ ./fix-rcmlib-path.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
for f in bin/*.in; do
|
|
|
|
substituteInPlace $f --subst-var-by rcm $out
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/thoughtbot/rcm";
|
2021-01-22 13:27:48 +00:00
|
|
|
description = "Management Suite for Dotfiles";
|
2015-01-25 17:52:46 +00:00
|
|
|
license = licenses.bsd3;
|
2021-01-22 13:27:48 +00:00
|
|
|
maintainers = with maintainers; [ malyn AndersonTorres ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = with platforms; unix;
|
2014-10-25 23:17:26 +01:00
|
|
|
};
|
2015-01-25 17:52:46 +00:00
|
|
|
}
|