python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / rcm / default.nix
blobbd03b591b17c0d2e62b837a30b1bf0d4fcdaf4f5
1 { lib
2 , stdenv
3 , fetchurl
4 }:
6 stdenv.mkDerivation rec {
7   pname = "rcm";
8   version = "1.3.5";
10   src = fetchurl {
11     url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
12     sha256 = "sha256-JHQefybxagSTJLqoavcARDxCgeLN4JlynXTE1LKevi0=";
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   };