fix revision argument
This commit is contained in:
parent
5353ee4314
commit
de99d8a4a1
2 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{fetchgit}:
|
{fetchgit}:
|
||||||
fetchgit {
|
fetchgit {
|
||||||
url = "https://github.com/turt2live/matrix-media-repo";
|
url = "https://github.com/turt2live/matrix-media-repo";
|
||||||
revision = "3184dbc7720fc103aaf4704be894eac69535e887";
|
rev = "3184dbc7720fc103aaf4704be894eac69535e887";
|
||||||
sha256 = "1j6y7alr60mmj5h014qmpz9a5qjv8cm61andwdacb0dqjjbvsm0z";
|
sha256 = "1j6y7alr60mmj5h014qmpz9a5qjv8cm61andwdacb0dqjjbvsm0z";
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,7 +21,7 @@ SOURCE_DIR=$(grep '^path is' $WORK_DIR/nix-prefetch-git.out | sed 's/^path is //
|
||||||
cat > source.nix << EOF
|
cat > source.nix << EOF
|
||||||
{ fetchgit }: fetchgit {
|
{ fetchgit }: fetchgit {
|
||||||
url = "$URL";
|
url = "$URL";
|
||||||
revision = "$REVISION";
|
rev = "$REVISION";
|
||||||
sha256 = "$SHA";
|
sha256 = "$SHA";
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
|
|
Reference in a new issue