about summary refs log tree commit diff
path: root/pkgs/tools/misc/rcm/default.nix
blob: 7fa9eb0e34f6cf027aba3110892871a368783ffa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "rcm-1.2.3";

  src = fetchurl {
    url = https://thoughtbot.github.io/rcm/dist/rcm-1.2.3.tar.gz;
    sha256 = "0gwpclbc152jkclj3w83s2snx3dcgljwr75q1z8czl3yar7d8bsh";
  };
 
  meta = {
    description = "Management Suite for Dotfiles";
    homepage = https://github.com/thoughtbot/rcm;
    license = stdenv.lib.licenses.bsd3;
  };
}