Skip to content

Commit b7f71bd

Browse files
committedJun 13, 2017
mr: update to version 1.20170129
1 parent 5ad7d31 commit b7f71bd

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed
 

Diff for: ‎pkgs/applications/version-management/mr/default.nix

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
{ stdenv, fetchurl, perl }:
1+
{ stdenv, fetchgit, perl }:
22

33
stdenv.mkDerivation rec {
4-
version = "1.20160123";
4+
version = "1.20170129";
55
name = "mr-${version}";
66

7-
src = fetchurl {
8-
url = "https://github.com/joeyh/myrepos/archive/${version}.tar.gz";
9-
sha256 = "1723cg5haplz2w9dwdzp6ds1ip33cx3awmj4wnb0h4yq171v5lqk";
7+
src = fetchgit {
8+
url = "git://myrepos.branchable.com/";
9+
rev = "refs/tags/" + version;
10+
sha256 = "15i9bs2i25l7ibv530ghy8280kklcgm5kr6j86s7iwcqqckd0czp";
1011
};
1112

1213
buildInputs = [ perl ];

0 commit comments

Comments
 (0)
Please sign in to comment.