chromium,chromedriver: 129.0.6668.91 -> 129.0.6668.100
[NixPkgs.git] / pkgs / by-name / rc / rcm / package.nix
blob3aa8ba412e17ce9cd3b31e1dc20581bb74a2370a
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation rec {
7   pname = "rcm";
8   version = "1.3.6";
10   src = fetchurl {
11     url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
12     sha256 = "sha256-9P37xFHR+1dkUxKQogKgqHH2uBujwBprdsSUNchQgKU=";
13   };
15   patches = [ ./fix-rcmlib-path.patch ];
17   postPatch = ''
18     for f in bin/*.in; do
19       substituteInPlace $f --subst-var-by rcm $out
20     done
21   '';
23   meta = with lib; {
24     homepage = "https://github.com/thoughtbot/rcm";
25     description = "Management Suite for Dotfiles";
26     license = licenses.bsd3;
27     maintainers = with maintainers; [ malyn AndersonTorres ];
28     platforms = with platforms; unix;
29   };