From 4f5918cd2e11082f33b3ce6a1bdcd5f70c68d3c2 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Sat, 25 Jun 2016 14:25:58 +0100 Subject: Revert "stdenv: introduce baseHash() to replace stripHash()" Introduced by mistake This reverts commit e71a5cb87841f0af4a2279517b77a9a07ba394c0. --- doc/stdenv.xml | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) (limited to 'doc') diff --git a/doc/stdenv.xml b/doc/stdenv.xml index 99c5d30c2db9..b075e0219a54 100644 --- a/doc/stdenv.xml +++ b/doc/stdenv.xml @@ -1191,35 +1191,31 @@ echo @foo@ file. - - - baseHash - path - suffix - + + + stripHash + path Strips the directory and hash part of a store path, storing the name part in the environment variable - strippedName. If suffix is also - provided, the suffix will also be removed. For example: + strippedName. For example: -baseHash "/nix/store/9s9r019176g7cvn2nvcw41gsp862y6b4-coreutils-8.24" +stripHash "/nix/store/9s9r019176g7cvn2nvcw41gsp862y6b4-coreutils-8.24" # prints coreutils-8.24 +echo $strippedName + If you wish to store the result in another variable, then the + following idiom may be useful: + -baseHash "/nix/store/0016702zbydafsr20n9l1dcw7x2bf6jj-arraysugar-0.1.0.gem" .gem -# prints arraysugar-0.1.0 +name="/nix/store/9s9r019176g7cvn2nvcw41gsp862y6b4-coreutils-8.24" +someVar=$(stripHash $name; echo $strippedName) - + - - stripHash - path - Deprecated. Use baseHash instead. - -- cgit 1.4.1