tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rcm: 1.3.0 -> 1.3.1
Gabe Evans
9 years ago
a6744150
111b4e4c
+6
-5
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
rcm
default.nix
+6
-5
pkgs/tools/misc/rcm/default.nix
···
1
1
{ stdenv, fetchurl }:
2
2
3
3
-
stdenv.mkDerivation {
4
4
-
name = "rcm-1.3.0";
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "rcm-${version}";
5
5
+
version = "1.3.1";
5
6
6
7
src = fetchurl {
7
7
-
url = https://thoughtbot.github.io/rcm/dist/rcm-1.3.0.tar.gz;
8
8
-
sha256 = "ddcf638b367b0361d8e063c29fd573dbe1712d1b83e8d5b3a868e4aa45ffc847";
8
8
+
url = "https://thoughtbot.github.io/rcm/dist/rcm-${version}.tar.gz";
9
9
+
sha256 = "9c8f92dba63ab9cb8a6b3d0ccf7ed8edf3f0fb388b044584d74778145fae7f8f";
9
10
};
10
10
-
11
11
+
11
12
patches = [ ./fix-rcmlib-path.patch ];
12
13
13
14
postPatch = ''