nixpkgs/pkgs/tools/misc/rcm/default.nix

27 lines
643 B
Nix
Raw Normal View History

2014-10-25 22:17:26 +00:00
{ stdenv, fetchurl }:
stdenv.mkDerivation {
2016-07-11 16:11:31 +00:00
name = "rcm-1.3.0";
2014-10-25 22:17:26 +00:00
src = fetchurl {
2016-07-11 16:11:31 +00:00
url = https://thoughtbot.github.io/rcm/dist/rcm-1.3.0.tar.gz;
sha256 = "ddcf638b367b0361d8e063c29fd573dbe1712d1b83e8d5b3a868e4aa45ffc847";
2014-10-25 22:17:26 +00:00
};
patches = [ ./fix-rcmlib-path.patch ];
postPatch = ''
for f in bin/*.in; do
substituteInPlace $f --subst-var-by rcm $out
done
'';
meta = with stdenv.lib; {
2014-10-25 22:17:26 +00:00
description = "Management Suite for Dotfiles";
homepage = https://github.com/thoughtbot/rcm;
license = licenses.bsd3;
maintainers = with maintainers; [ malyn ];
platforms = with platforms; unix;
2014-10-25 22:17:26 +00:00
};
}