mplayer: renamed the expression from "mplayer-r${version}" to "mplayer-${version}"
The additional 'r' after the hyphen prevented nix-env from recognizing the SVN revision number as a version'ish kind of thing; thus nix-env would never update an installed mplayer in any user profile. In other words, to get this particular update, you must remove the old expression by running nix-env -e mplayer-r33472 ..., and then install the new one: nix-env -i mplayer svn path=/nixpkgs/trunk/; revision=31785
This commit is contained in:
parent
c9d11ba56a
commit
9b740035a4
|
@ -73,7 +73,7 @@ let
|
|||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mplayer-r${mplayerRev}";
|
||||
name = "mplayer-${mplayerRev}";
|
||||
|
||||
src = fetchsvn {
|
||||
# Old kind of URL:
|
||||
|
|
Loading…
Reference in New Issue