forked from mirrors/nixpkgs
melpaBuild: keep original source file names without hash
This commit is contained in:
parent
b81c8b9013
commit
1724a07e2e
|
@ -32,8 +32,11 @@ stdenv.mkDerivation ({
|
|||
unpackCmd = ''
|
||||
case "$curSrc" in
|
||||
*.el)
|
||||
cp $curSrc $pname.el
|
||||
chmod +w $pname.el
|
||||
# keep original source filename without the hash
|
||||
local filename=$(basename "$curSrc")
|
||||
filename="''${filename:33}"
|
||||
cp $curSrc $filename
|
||||
chmod +w $filename
|
||||
sourceRoot="."
|
||||
;;
|
||||
*)
|
||||
|
|
Loading…
Reference in a new issue