Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9a94b0251970
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 070c76d434de
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 22, 2021

  1. rcm: 1.1.3 -> 1.3.4

    AndersonTorres committed Jan 22, 2021
    Copy the full SHA
    3e61deb View commit details
  2. Merge pull request #110480 from AndersonTorres/new-rcm

    rcm: 1.1.3 -> 1.3.4
    SuperSandro2000 authored Jan 22, 2021
    Copy the full SHA
    070c76d View commit details
Showing with 8 additions and 5 deletions.
  1. +8 −5 pkgs/tools/misc/rcm/default.nix
13 changes: 8 additions & 5 deletions pkgs/tools/misc/rcm/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{ lib, stdenv, fetchurl }:
{ lib
, stdenv
, fetchurl
}:

stdenv.mkDerivation rec {
pname = "rcm";
version = "1.3.3";
version = "1.3.4";

src = fetchurl {
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
sha256 = "1bqk7rrp1ckzvsvl9wghsr77m8xl3a7yc5gqdsisz492dx2j8mck";
sha256 = "sha256-mxGuN0Sc9NI07G0TSEeb/tMlPauhH36ed0BZhltmwko=";
};

patches = [ ./fix-rcmlib-path.patch ];
@@ -18,10 +21,10 @@ stdenv.mkDerivation rec {
'';

meta = with lib; {
description = "Management Suite for Dotfiles";
homepage = "https://github.com/thoughtbot/rcm";
description = "Management Suite for Dotfiles";
license = licenses.bsd3;
maintainers = with maintainers; [ malyn ];
maintainers = with maintainers; [ malyn AndersonTorres ];
platforms = with platforms; unix;
};
}